diff --git a/changelog.txt b/changelog.txt index 9fd698fb..04ad914c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -18,6 +18,20 @@ Version History =============== +1.9.18: [2019-07-24] James Heinrich :: 1.9.18-201907240906 + * bugfix (G:198) use native hash functions instead of obsolete external binaries + * bugfix (G:194) PHP 7.4 compatibility: fix deprecated curly brace array access + * bugfix (G:191) unsupported operand types module.audio.ac3.php:763 + * bugfix (G:189) false UTF-16 and no termination strings + * bugfix (G:188) add support for DS2 v8 + * bugfix (G:187) RIFF.WAVE.scot parsing + * bugfix (G:184) invalid regex pattern (ID3v1) + * bugfix (G:183) reduced information for GIF files with $option_extra_info=false + * bugfix (G:175) mp4 max buffer size + * bugfix (G:174) TIFF parsing improvements + * bugfix (G:121) trailing nulls in ID3v2 strings + * standardize "track" -> "track_number" + 1.9.17: [2019-02-07] James Heinrich :: 1.9.17-201902071234 * bugfix (G:178) HandleAllTags should skip "picture" * bugfix (G:177) error checking for reading more than PHP memory_limit diff --git a/getid3/getid3.php b/getid3/getid3.php index 9eb3c82d..ec9f4069 100644 --- a/getid3/getid3.php +++ b/getid3/getid3.php @@ -250,7 +250,7 @@ class getID3 */ protected $startup_warning = ''; - const VERSION = '1.9.17-201907240906'; + const VERSION = '1.9.18-201907240906'; const FREAD_BUFFER_SIZE = 32768; const ATTACHMENTS_NONE = false;