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

Commit 4ce900e

Browse files
committed
Release 0.3
1 parent 02fec48 commit 4ce900e

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.3] - 2017-07-28
99

1010
### Added
1111

@@ -64,6 +64,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6464
- Simple library for using the functionality in other projects
6565
- Web interface for downloading youtube videos
6666

67-
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.2...HEAD
67+
[Unreleased]: https://github.com/jeckman/YouTube-Downloader/compare/0.3...HEAD
68+
[0.2]: https://github.com/jeckman/YouTube-Downloader/compare/0.2...0.3
6869
[0.2]: https://github.com/jeckman/YouTube-Downloader/compare/0.1...0.2
6970
[0.1]: https://github.com/jeckman/YouTube-Downloader/compare/7397d4101a96aa3cc28d211d9f23d5da34c3d9c8...0.1

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.3-dev';
15+
private $version = '0.3';
1616

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

tests/Unit/Application/AppTest.php

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

3030
$app = new App($container);
3131

32-
$this->assertSame('0.3-dev', $app->getVersion());
32+
$this->assertSame('0.3', $app->getVersion());
3333
}
3434

3535
/**

0 commit comments

Comments
 (0)