diff --git a/CHANGELOG.md b/CHANGELOG.md index c1e378cb..7cc30ffe 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.5] - 2017-09-15 ### Added @@ -125,7 +125,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.4...HEAD +[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.5...HEAD +[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 [0.3]: https://github.com/jeckman/YouTube-Downloader/compare/0.2...0.3 [0.2]: https://github.com/jeckman/YouTube-Downloader/compare/0.1...0.2 diff --git a/src/Application/App.php b/src/Application/App.php index 0bffccf0..e710b17b 100644 --- a/src/Application/App.php +++ b/src/Application/App.php @@ -12,7 +12,7 @@ class App /** * @var string */ - private $version = '0.5-dev'; + private $version = '0.5'; /** * @var YoutubeDownloader\Container\Container diff --git a/tests/Unit/Application/AppTest.php b/tests/Unit/Application/AppTest.php index 27b4c3f5..976d333c 100644 --- a/tests/Unit/Application/AppTest.php +++ b/tests/Unit/Application/AppTest.php @@ -35,7 +35,7 @@ public function getVersion() $app = new App($container); - $this->assertSame('0.5-dev', $app->getVersion()); + $this->assertSame('0.5', $app->getVersion()); } /**