From 8697fb3bf53f56c2b74b0bdfa68ba3d5fbcff568 Mon Sep 17 00:00:00 2001 From: Julien Loizelet Date: Thu, 16 Jan 2025 11:42:53 +0900 Subject: [PATCH] feat(*): Allow Symfony 7 packages (#18) --- CHANGELOG.md | 10 ++++++++++ composer.json | 4 ++-- src/Constants.php | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41c0a5c..a3fc90a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/composer.json b/composer.json index 4dcf752..8cab407 100644 --- a/composer.json +++ b/composer.json @@ -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": { diff --git a/src/Constants.php b/src/Constants.php index 3e98372..4be248f 100644 --- a/src/Constants.php +++ b/src/Constants.php @@ -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'; }