From 5ba6fef8f44def582096ae609bd657ad38511de2 Mon Sep 17 00:00:00 2001 From: Art4 Date: Thu, 6 Dec 2018 23:38:52 +0100 Subject: [PATCH] Release 0.8 --- 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 372e33cb..dc43375f 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.8] - 2018-12-06 ### Changed @@ -240,7 +240,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.7...HEAD +[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.8...HEAD +[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 [0.6]: 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 diff --git a/src/Application/App.php b/src/Application/App.php index 032afb70..4e826b26 100644 --- a/src/Application/App.php +++ b/src/Application/App.php @@ -30,7 +30,7 @@ class App /** * @var string */ - private $version = '0.8-dev'; + private $version = '0.8'; /** * @var Psr\Container\ContainerInterface diff --git a/tests/Unit/Application/AppTest.php b/tests/Unit/Application/AppTest.php index d04642c4..8ec81532 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.8-dev', $app->getVersion()); + $this->assertSame('0.8', $app->getVersion()); } /**