Skip to content

Commit d869cf1

Browse files
committed
3.9.0
1 parent eba30ae commit d869cf1

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ a release.
1919

2020
## [Unreleased]
2121

22+
## [3.9.0] - 2022-09-22
2223
### Fixed
2324
- Tree: Allow sorting children by a ManyToOne relation (#2492)
2425
- Tree: Fix passing `null` to `abs()` function

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
},
9393
"extra": {
9494
"branch-alias": {
95-
"dev-main": "3.9-dev"
95+
"dev-main": "3.10-dev"
9696
}
9797
},
9898
"scripts": {

src/DoctrineExtensions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class DoctrineExtensions
3333
/**
3434
* Current version of extensions
3535
*/
36-
public const VERSION = '3.8.0';
36+
public const VERSION = '3.9.0';
3737

3838
/**
3939
* Hooks all extension metadata mapping drivers into

src/Tree/Strategy/ORM/Nested.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ public function shiftRangeRL(EntityManagerInterface $em, $class, $first, $last,
644644
if (null === $levelDelta && func_num_args() >= 8) {
645645
@trigger_error(sprintf(
646646
'Passing a type different than "int" as argument 8 to "%s()" is deprecated since gedmo/doctrine-extensions'.
647-
' 3.x and will throw a "%s" error in version 4.0.',
647+
' 3.9 and will throw a "%s" error in version 4.0.',
648648
__METHOD__,
649649
\TypeError::class
650650
), E_USER_DEPRECATED);

0 commit comments

Comments
 (0)