diff --git a/doc/CHANGELOG b/doc/CHANGELOG index 4bb9e3c2..0d44f772 100644 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -2,6 +2,21 @@ History for IMDBPHP ==================== +v7.3.1 (08.10.2022) +------------------- +* Remove PHP 7.3 from tests +! Fix `Calendar::upcomingReleases()` +! Fix `PersonSearch::results()` +! Fix `Title::storyline()` +! Fix `Title::tagline()` +! Fix `Title::parentalGuide()` +! Fix `TitleSearch::search()` +! Fix `Title::populateEpisodeSeasonEpisode()` +! Fix `Title::keywords()` #278 @duck7000 and @tboothman +* Simplify `Title::soundtrack()` to just return raw data rather than badly trying to parse it +! Fix `Person::spouse()` #275 @duck7000 +! Fix `Title::died()` + v7.3.0 (03.03.2022) ------------------- + `Person::real_id()` gives the imdb ID of a person after following any redirects from the ID requested. Thanks @duck7000 diff --git a/src/Imdb/MdbBase.php b/src/Imdb/MdbBase.php index 0143cd87..64623e8a 100644 --- a/src/Imdb/MdbBase.php +++ b/src/Imdb/MdbBase.php @@ -21,7 +21,7 @@ */ class MdbBase extends Config { - public $version = '7.3.0'; + public $version = '7.3.1'; protected $months = array( "January" => "01",