Skip to content
This repository was archived by the owner on Jul 12, 2020. It is now read-only.

Commit 22c4966

Browse files
committed
Release 0.5.1
1 parent 7d59fe2 commit 22c4966

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.5.1] - 2017-09-22
99

1010
### Fixed
1111

@@ -131,7 +131,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
131131
- Simple library for using the functionality in other projects
132132
- Web interface for downloading youtube videos
133133

134-
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.5...HEAD
134+
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.5.1...HEAD
135+
[0.5.1]: https://github.com/jeckman/YouTube-Downloader/compare/0.5...0.5.1
135136
[0.5]: https://github.com/jeckman/YouTube-Downloader/compare/0.4...0.5
136137
[0.4]: https://github.com/jeckman/YouTube-Downloader/compare/0.3...0.4
137138
[0.3]: https://github.com/jeckman/YouTube-Downloader/compare/0.2...0.3

src/Application/App.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class App
1212
/**
1313
* @var string
1414
*/
15-
private $version = '0.5';
15+
private $version = '0.5.1';
1616

1717
/**
1818
* @var YoutubeDownloader\Container\Container

tests/Unit/Application/AppTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function getVersion()
3535

3636
$app = new App($container);
3737

38-
$this->assertSame('0.5', $app->getVersion());
38+
$this->assertSame('0.5.1', $app->getVersion());
3939
}
4040

4141
/**

0 commit comments

Comments
 (0)