diff --git a/CHANGELOG.md b/CHANGELOG.md index ec3e3a8e..d704bbf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## [v1.11.2] - 2019-03-16 + +### Fixed + +- [#209], [#210] Composer installs crunz executable to vendor/bin instead of symlink + ## [v1.11.1] - 2019-01-27 ### Fixed @@ -154,6 +160,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - [#77] Fix high cpu usage +[#210]: https://github.com/lavary/crunz/pull/210 +[#209]: https://github.com/lavary/crunz/pull/209 [#190]: https://github.com/lavary/crunz/pull/190 [#181]: https://github.com/lavary/crunz/pull/181 [#180]: https://github.com/lavary/crunz/pull/180 @@ -248,6 +256,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [v1.6.1]: https://github.com/lavary/crunz/compare/v1.6.0...v1.6.1 [v1.6.0]: https://github.com/lavary/crunz/compare/v1.5.1...v1.6.0 [v1.5.1]: https://github.com/lavary/crunz/compare/v1.5.0...v1.5.1 +[v1.11.2]: https://github.com/lavary/crunz/compare/v1.11.1...v1.11.2 [v1.11.1]: https://github.com/lavary/crunz/compare/v1.11.0...v1.11.1 [v1.11.0]: https://github.com/lavary/crunz/compare/v1.11.0-rc.1...v1.11.0 [v1.11.0-rc.1]: https://github.com/lavary/crunz/compare/v1.11.0-beta.2...v1.11.0-rc.1 diff --git a/README.md b/README.md index 1af35fe4..df8855db 100644 --- a/README.md +++ b/README.md @@ -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 (v1.11.1)|![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/v1.11.1.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported* +|stable (v1.11.2)|![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/v1.11.2.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported* |dev v2 (master/v2.x-dev)|![7.1.3+](https://img.shields.io/badge/php-%5E7.1.3-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) |dev v1.11.x (v1.11.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.11.x.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|[![AppVeyor branch](https://img.shields.io/appveyor/ci/lavary/crunz/1.11.x.svg?style=flat-square)](https://ci.appveyor.com/project/lavary/crunz) diff --git a/crunz b/crunz index 0209b999..33d2afa1 100755 --- a/crunz +++ b/crunz @@ -72,5 +72,5 @@ if ($autoloadFileFound === false) { ); } -$application = new Crunz\Application('Crunz Command Line Interface', 'v1.11.1'); +$application = new Crunz\Application('Crunz Command Line Interface', 'v1.11.2'); $application->run();