From c796003e1d7e88b9578338972d5a9d3f8b6daa2c Mon Sep 17 00:00:00 2001 From: Michael Roterman Date: Sun, 21 Jun 2015 22:38:39 +0200 Subject: [PATCH] Releasing 2.0.8 --- composer.json | 2 +- lib/Tmdb/Client.php | 2 +- test/Tmdb/Tests/Repository/TvRepositoryTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 4dc97d2e..afe4d323 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "php": ">=5.4.0", "ext-curl": "*", "symfony/event-dispatcher": "~2.4", - "symfony/options-resolver": "~2.1", + "symfony/options-resolver": "~2.6", "guzzlehttp/guzzle": "~5.0", "guzzlehttp/cache-subscriber": "~0.1@dev", "guzzlehttp/log-subscriber": "~1.0", diff --git a/lib/Tmdb/Client.php b/lib/Tmdb/Client.php index a6665d0e..6b068eea 100644 --- a/lib/Tmdb/Client.php +++ b/lib/Tmdb/Client.php @@ -31,7 +31,7 @@ class Client use ApiMethodsTrait; /** Client Version */ - const VERSION = '2.0.6'; + const VERSION = '2.0.8'; /** Base API URI */ const TMDB_URI = 'api.themoviedb.org/3/'; diff --git a/test/Tmdb/Tests/Repository/TvRepositoryTest.php b/test/Tmdb/Tests/Repository/TvRepositoryTest.php index 8c22efe6..d5aac977 100644 --- a/test/Tmdb/Tests/Repository/TvRepositoryTest.php +++ b/test/Tmdb/Tests/Repository/TvRepositoryTest.php @@ -27,7 +27,7 @@ public function shouldLoadTv() ->method('get') ->with($this->getRequest( 'tv/' . self::TV_ID, - ['append_to_response' => 'credits,external_ids,images,translations,similar,keywords,changes,content_ratings'] + ['append_to_response' => 'credits,external_ids,images,translations,similar,keywords,changes,content_ratings,alternative_titles'] )) ;