From 282d4b987f6245621198466bae010fbf28e31887 Mon Sep 17 00:00:00 2001 From: Art4 Date: Thu, 20 Dec 2018 19:11:36 +0100 Subject: [PATCH] Release 0.10 --- CHANGELOG.md | 10 ++++------ src/Application/App.php | 2 +- tests/Unit/Application/AppTest.php | 2 +- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20dcd577..3541e112 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -### Changed - -- `YoutubeDownloader\Http\Client::createRequest()` was renamed to `YoutubeDownloader\Http\Client::createFullRequest()` +## [0.10] - 2018-12-20 ### Fixed @@ -17,7 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Removed -- `YoutubeDownloader\Http\CurlClient::createRequest()` was removed, use `YoutubeDownloader\Http\CurlClient::createFullRequest()` instead +- **Breaking:** `YoutubeDownloader\Http\CurlClient::createRequest()` was removed, use `YoutubeDownloader\Http\CurlClient::createFullRequest()` instead ## [0.9] - 2018-12-10 @@ -34,7 +32,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Deprecated - `YoutubeDownloader\Http\CurlClient::createRequest()` will be removed in 0.10, use `YoutubeDownloader\Http\CurlClient::createFullRequest()` instead -- `YoutubeDownloader\Http\Client::createRequest()` will be renamed to `YoutubeDownloader\Http\Client::createFullRequest()` in 0.10 ## [0.8] - 2018-12-06 @@ -278,7 +275,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Simple library for using the functionality in other projects - Web interface for downloading youtube videos -[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.9...HEAD +[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.10...HEAD +[0.10]: https://github.com/jeckman/YouTube-Downloader/compare/0.9...0.10 [0.9]: https://github.com/jeckman/YouTube-Downloader/compare/0.8...0.9 [0.8]: https://github.com/jeckman/YouTube-Downloader/compare/0.7...0.8 [0.7]: https://github.com/jeckman/YouTube-Downloader/compare/0.6...0.7 diff --git a/src/Application/App.php b/src/Application/App.php index cd4ffeb3..9a7b2041 100644 --- a/src/Application/App.php +++ b/src/Application/App.php @@ -30,7 +30,7 @@ class App /** * @var string */ - private $version = '0.10-dev'; + private $version = '0.10'; /** * @var Psr\Container\ContainerInterface diff --git a/tests/Unit/Application/AppTest.php b/tests/Unit/Application/AppTest.php index 6c14914c..193787e4 100644 --- a/tests/Unit/Application/AppTest.php +++ b/tests/Unit/Application/AppTest.php @@ -56,7 +56,7 @@ public function getVersion() $app = new App($container); - $this->assertSame('0.10-dev', $app->getVersion()); + $this->assertSame('0.10', $app->getVersion()); } /**