diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cc0ba33..6b8cf1f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.6] - 2018-01-02 ### Added @@ -167,7 +167,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.5.1...HEAD +[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.6...HEAD +[0.5.1]: https://github.com/jeckman/YouTube-Downloader/compare/0.5.1...0.6 [0.5.1]: https://github.com/jeckman/YouTube-Downloader/compare/0.5...0.5.1 [0.5]: https://github.com/jeckman/YouTube-Downloader/compare/0.4...0.5 [0.4]: https://github.com/jeckman/YouTube-Downloader/compare/0.3...0.4 diff --git a/src/Application/App.php b/src/Application/App.php index b31ec320..c65ee3c9 100644 --- a/src/Application/App.php +++ b/src/Application/App.php @@ -30,7 +30,7 @@ class App /** * @var string */ - private $version = '0.6-dev'; + private $version = '0.6'; /** * @var YoutubeDownloader\Container\Container diff --git a/tests/Unit/Application/AppTest.php b/tests/Unit/Application/AppTest.php index 33a2f7f9..28ba919a 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.6-dev', $app->getVersion()); + $this->assertSame('0.6', $app->getVersion()); } /**