Skip to content

Commit

Permalink
3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys committed Sep 22, 2022
1 parent eba30ae commit d869cf1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ a release.

## [Unreleased]

## [3.9.0] - 2022-09-22
### Fixed
- Tree: Allow sorting children by a ManyToOne relation (#2492)
- Tree: Fix passing `null` to `abs()` function
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "3.9-dev"
"dev-main": "3.10-dev"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/DoctrineExtensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ final class DoctrineExtensions
/**
* Current version of extensions
*/
public const VERSION = '3.8.0';
public const VERSION = '3.9.0';

/**
* Hooks all extension metadata mapping drivers into
Expand Down
2 changes: 1 addition & 1 deletion src/Tree/Strategy/ORM/Nested.php
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ public function shiftRangeRL(EntityManagerInterface $em, $class, $first, $last,
if (null === $levelDelta && func_num_args() >= 8) {
@trigger_error(sprintf(
'Passing a type different than "int" as argument 8 to "%s()" is deprecated since gedmo/doctrine-extensions'.
' 3.x and will throw a "%s" error in version 4.0.',
' 3.9 and will throw a "%s" error in version 4.0.',
__METHOD__,
\TypeError::class
), E_USER_DEPRECATED);
Expand Down

0 comments on commit d869cf1

Please sign in to comment.