Skip to content

Commit

Permalink
Release 7.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tboothman committed Mar 3, 2022
1 parent 5346fb6 commit 575ab12
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions doc/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
History for IMDBPHP
====================

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
+ New class `Calendar` with method `upcomingReleases($country)` that lets you see the upcoming releases for a country as seen on https://www.imdb.com/calendar?region=gb. Thanks @duck7000
! Fix character encoding in methods that use xpath. (Affected `Title::cast()` names and role names, maybe more) #262 #253
! Decode html single quotes in `Title::title()` #264
! Fix `Title::comment()`. #258 #270
! Fix title redirects not being followed (Sometimes imdb pages are redirected to one with a different ID)
! Fix `Title::movie_recommendations()`. Thanks @duck7000 #268

v7.2.0 (15.07.2021)
-------------------
+ Added $ratings parameter to `Title::mpaa()` to get all ratings instead of just the last one. @PoLaKoSz #204
Expand Down
2 changes: 1 addition & 1 deletion src/Imdb/MdbBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
class MdbBase extends Config
{
public $version = '7.2.0';
public $version = '7.3.0';

protected $months = array(
"January" => "01",
Expand Down

0 comments on commit 575ab12

Please sign in to comment.