diff --git a/CHANGELOG.md b/CHANGELOG.md index 84a76650..7abff033 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Changed +## [3.9.3] - 2023-11-29 + +### Added + - The default value for the `PhoneNumberType` form type option `country_display_emoji_flag` will change from `false` to `true` on the next major release - The Doctrine column type length is configurable. Any existing `length` configuration (not taken into account before this release) will now be taken into account. diff --git a/composer.json b/composer.json index da41d438..220be1fe 100644 --- a/composer.json +++ b/composer.json @@ -52,7 +52,7 @@ }, "extra": { "branch-alias": { - "dev-master": "3.6.x-dev" + "dev-master": "3.9.x-dev" } }, "conflict": { diff --git a/src/Validator/Constraints/PhoneNumber.php b/src/Validator/Constraints/PhoneNumber.php index a80f27fd..c8bf9df9 100644 --- a/src/Validator/Constraints/PhoneNumber.php +++ b/src/Validator/Constraints/PhoneNumber.php @@ -19,7 +19,6 @@ * Phone number constraint. * * @Annotation - * * @NamedArgumentConstructor */ #[\Attribute(\Attribute::TARGET_PROPERTY)]