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

Commit

Permalink
Release 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Art4 committed Nov 30, 2018
1 parent a43c352 commit e563ec5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7] - 2018-11-30

### Added

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

### Fixed

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

### Deprecated
Expand Down Expand Up @@ -195,7 +196,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.6...HEAD
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.7...HEAD
[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
[0.5]: https://github.com/jeckman/YouTube-Downloader/compare/0.4...0.5
Expand Down
2 changes: 1 addition & 1 deletion src/Application/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class App
/**
* @var string
*/
private $version = '0.7-dev';
private $version = '0.7';

/**
* @var YoutubeDownloader\Container\Container
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Application/AppTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function getVersion()

$app = new App($container);

$this->assertSame('0.7-dev', $app->getVersion());
$this->assertSame('0.7', $app->getVersion());
}

/**
Expand Down

0 comments on commit e563ec5

Please sign in to comment.