Skip to content

Commit

Permalink
changed changelog and readme, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
“duck7000” committed Mar 11, 2024
1 parent f911f2e commit e80bbab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Quick Start
For Title search:
```php
$imdb = new \Imdb\TitleSearch();
$results = $imdb->search("1408", "MOVIE,TV");
$results = $imdb->search("1408", "MOVIE,TV", "1955-01-01", "2000-01-01");
All info is in the wiki page
```

Expand Down
5 changes: 5 additions & 0 deletions doc/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History for IMDBPHP6
====================

v1.3.6
-------------------
* Fixed bug in TitleSearchAdvanced with DateTime
* TitleSearch added search by releaseDates

v1.3.5
-------------------
* Added awards method (Get all awards for a title)
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 = '1.3.5';
public $version = '1.3.6';

/**
* @var CacheInterface
Expand Down

0 comments on commit e80bbab

Please sign in to comment.