Skip to content

Commit

Permalink
feat(*): Allow Symfony 7 packages (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet authored Jan 16, 2025
1 parent bec1549 commit 8697fb3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this librar

As far as possible, we try to adhere to [Symfony guidelines](https://symfony.com/doc/current/contributing/code/bc.html#working-on-symfony-code) when deciding whether a change is a breaking change or not.

---

## [3.5.0](https://github.com/crowdsecurity/php-lapi-client/releases/tag/v3.5.0) - 2025-01-16
[_Compare with previous release_](https://github.com/crowdsecurity/php-lapi-client/compare/v3.4.0...v3.5.0)

### Changed

- Allow Symfony 7 packages


---

## [3.4.0](https://github.com/crowdsecurity/php-lapi-client/releases/tag/v3.4.0) - 2025-01-09
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
},
"require": {
"php": "^7.2.5 || ^8.0",
"crowdsec/common": "^2.3.0",
"crowdsec/common": "^2.4.0",
"ext-json": "*",
"symfony/config": "^4.4.44 || ^5.4.11 || ^6.0.11",
"symfony/config": "^4.4.44 || ^5.4.11 || ^6.0.11 || ^7.2.0",
"monolog/monolog": "^1.17 || ^2.1"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ class Constants extends CommonConstants
/**
* @var string The current version of this library
*/
public const VERSION = 'v3.4.0';
public const VERSION = 'v3.5.0';
}

0 comments on commit 8697fb3

Please sign in to comment.