Skip to content

Commit d674b39

Browse files
Release v2.2.0 (#306)
1 parent 8d7f238 commit d674b39

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## Unreleased
88

9+
## [v2.2.0] - 2020-06-18
10+
11+
### Added
12+
13+
- [#287] Add `task:debug` command
14+
- [#233] Add option to ignore empty context in monolog, thanks to [@rrushton]
15+
- [#298] Add `logger_factory` config option
16+
17+
### Removed
18+
19+
- [#292] Drop Symfony 4.2 support
20+
921
## [v2.1.0] - 2020-02-02
1022

1123
### Added
@@ -251,6 +263,9 @@ In `v2` this will result in exception.
251263

252264
- [#77] Fix high cpu usage
253265

266+
[#298]: https://github.com/lavary/crunz/pull/298
267+
[#292]: https://github.com/lavary/crunz/pull/292
268+
[#287]: https://github.com/lavary/crunz/pull/287
254269
[#280]: https://github.com/lavary/crunz/pull/280
255270
[#274]: https://github.com/lavary/crunz/pull/274
256271
[#268]: https://github.com/lavary/crunz/pull/268
@@ -260,6 +275,7 @@ In `v2` this will result in exception.
260275
[#245]: https://github.com/lavary/crunz/pull/245
261276
[#243]: https://github.com/lavary/crunz/pull/243
262277
[#240]: https://github.com/lavary/crunz/pull/240
278+
[#233]: https://github.com/lavary/crunz/pull/233
263279
[#229]: https://github.com/lavary/crunz/pull/229
264280
[#225]: https://github.com/lavary/crunz/pull/225
265281
[#224]: https://github.com/lavary/crunz/pull/224
@@ -385,6 +401,7 @@ In `v2` this will result in exception.
385401
[v2.0.3]: https://github.com/lavary/crunz/compare/v2.0.2...v2.0.3
386402
[v2.0.4]: https://github.com/lavary/crunz/compare/v2.0.3...v2.0.4
387403
[v2.1.0]: https://github.com/lavary/crunz/compare/v2.0.4...v2.1.0
404+
[v2.2.0]: https://github.com/lavary/crunz/compare/v2.1.0...v2.2.0
388405
[@vinkla]: https://github.com/vinkla
389406
[@timurbakarov]: https://github.com/timurbakarov
390407
[@radarhere]: https://github.com/radarhere
@@ -401,3 +418,4 @@ In `v2` this will result in exception.
401418
[@FallDi]: https://github.com/FallDi
402419
[@SadeghPM]: https://github.com/SadeghPM
403420
[@mareksuscak]: https://github.com/mareksuscak
421+
[@rrushton]: https://github.com/rrushton

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Crunz is capable of executing any kind of executable command as well as PHP clos
1212

1313
|Version|Supported PHP versions|Linux build|Windows build|
1414
|---|---|---|---|
15-
|stable (v2.1.0)|![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.1.0.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported*
15+
|stable (v2.2.0)|![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.2.0.svg?style=flat-square)](https://travis-ci.org/lavary/crunz)|*Tag build not supported*
1616
|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)
1717
|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)
1818

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@
7676
"extra": {
7777
"branch-alias": {
7878
"dev-master": "2.x-dev",
79-
"dev-2.1.x": "v2.1.x-dev",
80-
"dev-1.12.x": "1.12.x-dev"
79+
"dev-2.2.x": "v2.2.x-dev"
8180
}
8281
}
8382
}

crunz

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ if ($autoloadFileFound === false) {
6767
);
6868
}
6969

70-
$application = new Crunz\Application('Crunz Command Line Interface', 'v2.2.x-dev');
70+
$application = new Crunz\Application('Crunz Command Line Interface', 'v2.2.0');
7171
$application->run();

0 commit comments

Comments
 (0)