Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.0.3 #263

Merged
merged 1 commit into from
Nov 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [v2.0.3] - 2019-11-17

### Fixed

- [#261] Release lock on error
- [#264] Revert converting closure result to `int`

## [v1.12.3] - 2019-11-17

### Fixed
Expand Down Expand Up @@ -221,6 +228,7 @@ In `v2` this will result in exception.

- [#77] Fix high cpu usage

[#264]: https://github.com/lavary/crunz/pull/264
[#261]: https://github.com/lavary/crunz/pull/261
[#251]: https://github.com/lavary/crunz/pull/251
[#245]: https://github.com/lavary/crunz/pull/245
Expand Down Expand Up @@ -346,6 +354,7 @@ In `v2` this will result in exception.
[v2.0.0]: https://github.com/lavary/crunz/compare/v1.12.0...v2.0.0
[v2.0.1]: https://github.com/lavary/crunz/compare/v2.0.0...v2.0.1
[v2.0.2]: https://github.com/lavary/crunz/compare/v2.0.1...v2.0.2
[v2.0.3]: https://github.com/lavary/crunz/compare/v2.0.2...v2.0.3
[@vinkla]: https://github.com/vinkla
[@timurbakarov]: https://github.com/timurbakarov
[@radarhere]: https://github.com/radarhere
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Crunz is capable of executing any kind of executable command as well as PHP clos

|Version|Supported PHP versions|Linux build|Windows build|
|---|---|---|---|
|stable (v2.0.2)|![7.2+](https://img.shields.io/badge/php-%5E7.2-blue.svg?style=flat-square)|[![Build Status](https://img.shields.io/travis/lavary/crunz/v2.0.2.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported*
|stable (v2.0.3)|![7.2+](https://img.shields.io/badge/php-%5E7.2-blue.svg?style=flat-square)|[![Build Status](https://img.shields.io/travis/lavary/crunz/v2.0.3.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported*
|dev v2 (master/v2.x-dev)|![7.2+](https://img.shields.io/badge/php-%5E7.2-blue.svg?style=flat-square)|[![Build Status](https://img.shields.io/travis/lavary/crunz/master.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|[![AppVeyor branch](https://img.shields.io/appveyor/ci/lavary/crunz/master.svg?style=flat-square)](https://ci.appveyor.com/project/lavary/crunz)
|dev v1.12.x (v1.12.x-dev)|![5.6+](https://img.shields.io/badge/php-%5E5.6%20%7C%7C%20%5E7.0-blue.svg?style=flat-square)|[![Build Status](https://img.shields.io/travis/lavary/crunz/1.12.x.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|[![AppVeyor branch](https://img.shields.io/appveyor/ci/lavary/crunz/1.12.x.svg?style=flat-square)](https://ci.appveyor.com/project/lavary/crunz)

Expand Down
2 changes: 1 addition & 1 deletion crunz
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ if ($autoloadFileFound === false) {
);
}

$application = new Crunz\Application('Crunz Command Line Interface', 'v2.0.2');
$application = new Crunz\Application('Crunz Command Line Interface', 'v2.0.3');
$application->run();