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

Commit e563ec5

Browse files
committed
Release 0.7
1 parent a43c352 commit e563ec5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

+4-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.7] - 2018-11-30
99

1010
### Added
1111

@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1717

1818
### Fixed
1919

20+
- Non-latin letters in the title of downloaded files won't be remove anymore
2021
- Some bugs fixed in decipher dictionary
2122

2223
### Deprecated
@@ -195,7 +196,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
195196
- Simple library for using the functionality in other projects
196197
- Web interface for downloading youtube videos
197198

198-
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.6...HEAD
199+
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.7...HEAD
200+
[0.7]: https://github.com/jeckman/YouTube-Downloader/compare/0.6...0.7
199201
[0.6]: https://github.com/jeckman/YouTube-Downloader/compare/0.5.1...0.6
200202
[0.5.1]: https://github.com/jeckman/YouTube-Downloader/compare/0.5...0.5.1
201203
[0.5]: https://github.com/jeckman/YouTube-Downloader/compare/0.4...0.5

src/Application/App.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class App
3030
/**
3131
* @var string
3232
*/
33-
private $version = '0.7-dev';
33+
private $version = '0.7';
3434

3535
/**
3636
* @var YoutubeDownloader\Container\Container

tests/Unit/Application/AppTest.php

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

5757
$app = new App($container);
5858

59-
$this->assertSame('0.7-dev', $app->getVersion());
59+
$this->assertSame('0.7', $app->getVersion());
6060
}
6161

6262
/**

0 commit comments

Comments
 (0)