diff --git a/CHANGELOG.md b/CHANGELOG.md index b5129a3181..9110f7fefd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ a release. --- ## [Unreleased] + +## [3.13.0] ### Fixed - References: fixed condition in `XML` Driver that did not allow to retrieve from the entity definition the `mappedBy` and `inversedBy` fields. - Fix bug collecting metadata for inherited mapped classes diff --git a/src/DoctrineExtensions.php b/src/DoctrineExtensions.php index 437de34fe1..861108d100 100644 --- a/src/DoctrineExtensions.php +++ b/src/DoctrineExtensions.php @@ -28,7 +28,7 @@ final class DoctrineExtensions /** * Current version of extensions */ - public const VERSION = '3.12.0'; + public const VERSION = '3.13.0'; /** * Hooks all extension metadata mapping drivers into diff --git a/src/Tree/Entity/Repository/NestedTreeRepository.php b/src/Tree/Entity/Repository/NestedTreeRepository.php index 3038e13edf..fad871e63d 100644 --- a/src/Tree/Entity/Repository/NestedTreeRepository.php +++ b/src/Tree/Entity/Repository/NestedTreeRepository.php @@ -86,7 +86,7 @@ public function __call($method, $args) if (!$node instanceof Node) { @trigger_error(\sprintf( 'Not implementing the "%s" interface from node "%s" is deprecated since gedmo/doctrine-extensions' - .' 3.12 and will throw a "%s" error in version 4.0.', + .' 3.13 and will throw a "%s" error in version 4.0.', Node::class, \get_class($node), \TypeError::class