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 v3.5.0 #67

Merged
merged 1 commit into from
Oct 15, 2023
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
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [v3.5.0] - 2023-10-15

### Added

- [crunzphp#39] Add PHP v8.2 support
- [crunzphp#64] Test Symfony v6.3
- [crunzphp#66] Add PHP v8.3 support

### Removed

- [crunzphp#38] Drop PHP v7.4 support
- [crunzphp#54] Drop Symfony v6.0 support
- [crunzphp#63] Drop Symfony v6.1 support
- [crunzphp#65] Drop Symfony v6.2 support

## [v3.4.1] - 2022-11-01

### Fixed
Expand Down Expand Up @@ -508,7 +523,14 @@ In `v2` this will result in exception.
[crunzphp#5]: https://github.com/crunzphp/crunz/pull/5
[crunzphp#24]: https://github.com/crunzphp/crunz/pull/24
[crunzphp#31]: https://github.com/crunzphp/crunz/pull/31
[crunzphp#38]: https://github.com/crunzphp/crunz/pull/38
[crunzphp#39]: https://github.com/crunzphp/crunz/pull/39
[crunzphp#44]: https://github.com/crunzphp/crunz/pull/44
[crunzphp#54]: https://github.com/crunzphp/crunz/pull/54
[crunzphp#63]: https://github.com/crunzphp/crunz/pull/63
[crunzphp#64]: https://github.com/crunzphp/crunz/pull/64
[crunzphp#65]: https://github.com/crunzphp/crunz/pull/65
[crunzphp#66]: https://github.com/crunzphp/crunz/pull/66
[v1.5.1]: https://github.com/crunzphp/crunz/compare/v1.5.0...v1.5.1
[v1.6.0]: https://github.com/crunzphp/crunz/compare/v1.5.1...v1.6.0
[v1.6.1]: https://github.com/crunzphp/crunz/compare/v1.6.0...v1.6.1
Expand Down Expand Up @@ -553,6 +575,7 @@ In `v2` this will result in exception.
[v3.3.0]: https://github.com/crunzphp/crunz/compare/v3.2.2...v3.3.0
[v3.4.0]: https://github.com/crunzphp/crunz/compare/v3.3.0...v3.4.0
[v3.4.1]: https://github.com/crunzphp/crunz/compare/v3.4.0...v3.4.1
[v3.5.0]: https://github.com/crunzphp/crunz/compare/v3.4.1...v3.5.0
[@andrewmy]: https://github.com/andrewmy
[@arthurbarros]: https://github.com/arthurbarros
[@bashgeek]: https://github.com/bashgeek
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ Crunz is capable of executing any kind of executable command as well as PHP clos
[![Packagist](https://img.shields.io/packagist/dt/crunzphp/crunz.svg?style=flat-square)](https://packagist.org/packages/crunzphp/crunz/stats)
[![Packagist](https://img.shields.io/packagist/dm/crunzphp/crunz.svg?style=flat-square)](https://packagist.org/packages/crunzphp/crunz/stats)

| Version | Supported PHP versions |
|---------------------|---------------------------------------------------------------------------------------------------|
| dev v3 (3.5.x-dev) | ![8.0+](https://img.shields.io/badge/php-%3E=8.0-blue.svg?style=flat-square) |
| stable v3 (v3.4.1) | ![7.4+](https://img.shields.io/badge/php-%3E=7.4-blue.svg?style=flat-square) |
| stable v2 (v2.3.1) | ![7.2+](https://img.shields.io/badge/php-%3E=7.2-blue.svg?style=flat-square) |
| stable v1 (v1.12.4) | ![5.6-7.0+](https://img.shields.io/badge/php-%5E5.6%20%7C%7C%20%5E7.0-blue.svg?style=flat-square) |
| Version | Supported PHP versions |
|----------|---------------------------------------------------------------------------------------------------|
| v3.6-dev | ![8.0+](https://img.shields.io/badge/php-%3E=8.0-blue.svg?style=flat-square) |
| v3.5 | ![8.0+](https://img.shields.io/badge/php-%3E=8.0-blue.svg?style=flat-square) |
| v3.4 | ![7.4+](https://img.shields.io/badge/php-%3E=7.4-blue.svg?style=flat-square) |
| v2.3 | ![7.2+](https://img.shields.io/badge/php-%3E=7.2-blue.svg?style=flat-square) |
| v1.12 | ![5.6-7.0+](https://img.shields.io/badge/php-%5E5.6%20%7C%7C%20%5E7.0-blue.svg?style=flat-square) |

## Roadmap
| Version | Release date | Active support until | Bug support until | Status |
Expand Down
Loading