diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f24b5b7..d99e1a44 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] +## 1.11.0-beta.1 - 2018-10-23 + +### Added + +- Custom `LockStore` support, issue [#125](https://github.com/lavary/crunz/issues/125) - PR [#153](https://github.com/lavary/crunz/pull/153) by [@digilist](https://github.com/digilist) + ### Fixed - Incompatibility with PHAR format - PR [#146](https://github.com/lavary/crunz/pull/146) diff --git a/README.md b/README.md index b65bab6b..10165767 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Crunz is capable of executing any kind of executable command as well as PHP clos |Version|Linux build|Windows build| |---|---|---| |stable (v1.10.1)|[![Build Status](https://img.shields.io/travis/lavary/crunz/v1.10.1.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported* +|beta (v1.11.0-beta.1)|[![Build Status](https://img.shields.io/travis/lavary/crunz/v1.11.0-beta.1.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported* |v2 (master/v2.x-dev)|[![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) |v1 (v1.x-dev)|[![Build Status](https://img.shields.io/travis/lavary/crunz/1.x.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|[![AppVeyor branch](https://img.shields.io/appveyor/ci/lavary/crunz/1.x.svg?style=flat-square)](https://ci.appveyor.com/project/lavary/crunz) diff --git a/crunz b/crunz index c0c2fb38..271e5b33 100755 --- a/crunz +++ b/crunz @@ -55,5 +55,5 @@ if ($autoloadFileFound === false) { ); } -$application = new Crunz\Application('Crunz Command Line Interface', 'v1.10.1'); +$application = new Crunz\Application('Crunz Command Line Interface', 'v1.11.0-beta.1'); $application->run();