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

Commit

Permalink
Release 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Art4 committed Dec 20, 2018
1 parent 6e95bce commit 282d4b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed

- `YoutubeDownloader\Http\Client::createRequest()` was renamed to `YoutubeDownloader\Http\Client::createFullRequest()`
## [0.10] - 2018-12-20

### Fixed

- CurlClient respects curl options again

### Removed

- `YoutubeDownloader\Http\CurlClient::createRequest()` was removed, use `YoutubeDownloader\Http\CurlClient::createFullRequest()` instead
- **Breaking:** `YoutubeDownloader\Http\CurlClient::createRequest()` was removed, use `YoutubeDownloader\Http\CurlClient::createFullRequest()` instead

## [0.9] - 2018-12-10

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

- `YoutubeDownloader\Http\CurlClient::createRequest()` will be removed in 0.10, use `YoutubeDownloader\Http\CurlClient::createFullRequest()` instead
- `YoutubeDownloader\Http\Client::createRequest()` will be renamed to `YoutubeDownloader\Http\Client::createFullRequest()` in 0.10

## [0.8] - 2018-12-06

Expand Down Expand Up @@ -278,7 +275,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.9...HEAD
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.10...HEAD
[0.10]: https://github.com/jeckman/YouTube-Downloader/compare/0.9...0.10
[0.9]: https://github.com/jeckman/YouTube-Downloader/compare/0.8...0.9
[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
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.10-dev';
private $version = '0.10';

/**
* @var Psr\Container\ContainerInterface
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.10-dev', $app->getVersion());
$this->assertSame('0.10', $app->getVersion());
}

/**
Expand Down

0 comments on commit 282d4b9

Please sign in to comment.