From 422c9ed1cbf39501e16feb5deb94df85742bbd9a Mon Sep 17 00:00:00 2001 From: Art4 Date: Fri, 21 Jul 2017 16:32:40 +0200 Subject: [PATCH] Release 0.2 --- CHANGELOG.md | 5 +++-- src/Application/App.php | 2 +- tests/Unit/Application/AppTest.php | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa6217a7..d6fe13ad 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.2] - 2017-07-21 ### Added @@ -29,5 +29,6 @@ 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.1...HEAD +[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.2...HEAD +[0.2]: https://github.com/jeckman/YouTube-Downloader/compare/0.1...0.2 [0.1]: https://github.com/jeckman/YouTube-Downloader/compare/7397d4101a96aa3cc28d211d9f23d5da34c3d9c8...0.1 diff --git a/src/Application/App.php b/src/Application/App.php index 4a70625d..fa1b96a0 100644 --- a/src/Application/App.php +++ b/src/Application/App.php @@ -12,7 +12,7 @@ class App /** * @var string */ - private $version = '0.2-dev'; + private $version = '0.2'; /** * @var YoutubeDownloader\Container\Container diff --git a/tests/Unit/Application/AppTest.php b/tests/Unit/Application/AppTest.php index 9709e04e..cce8a6f2 100644 --- a/tests/Unit/Application/AppTest.php +++ b/tests/Unit/Application/AppTest.php @@ -29,7 +29,7 @@ public function getVersion() $app = new App($container); - $this->assertSame('0.2-dev', $app->getVersion()); + $this->assertSame('0.2', $app->getVersion()); } /**