Skip to content

Commit ff562a8

Browse files
authored
Merge pull request #105 from jolicode/feat/prepare-9.0.0-beta2
chore(release): prepare 9.0.0-beta2 release
2 parents 80336ef + 2015ab2 commit ff562a8

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

.github/scripts/build-documentation.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ poetry run mike deploy --push --remote gh-pages --update-aliases 8.2.2 latest
2020
poetry run mike set-default --push latest
2121

2222
# build documentation for 9.x
23-
git checkout tags/9.0.0-beta.1
24-
poetry run mike deploy --push --remote gh-pages 9.0.0-beta.1
23+
git checkout tags/9.0.0-beta.2
24+
poetry run mike deploy --push --remote gh-pages 9.0.0-beta.2
2525

2626
# clean fake remote
2727
cd ./.build

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.0.0-beta.2] - 2024-04-02
11+
### Added
12+
- [GH#95](https://github.com/jolicode/automapper/pull/95) Add Api Platform integration
13+
- [GH#103](https://github.com/jolicode/automapper/pull/103) Add debug command and profiler for the symfony bundle
14+
15+
### Changed
16+
- [GH#104](https://github.com/jolicode/automapper/pull/104) Replace allow_constructor with constructor_strategy to have more control on how to use the constructor
17+
- [GH#102](https://github.com/jolicode/automapper/pull/102) Change default reload behavior for the symfony bundle
18+
19+
### Fixed
20+
- [GH#101](https://github.com/jolicode/automapper/pull/101) Fix some inconsistencies with symfony/serializer behavior
21+
1022
## [9.0.0-beta.1] - 2024-03-25
1123
### Added
1224
- [GH#61](https://github.com/jolicode/automapper/pull/61) Add event system during code generation, make serializer optional thanks to it

src/AutoMapper.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
*/
3636
class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface
3737
{
38-
public const VERSION = '9.0.0-dev';
39-
public const VERSION_ID = 90000;
38+
public const VERSION = '9.0.0-beta.2';
39+
public const VERSION_ID = 90000.2;
4040
public const MAJOR_VERSION = 9;
4141
public const MINOR_VERSION = 0;
4242
public const RELEASE_VERSION = 0;
43-
public const EXTRA_VERSION = 'dev';
43+
public const EXTRA_VERSION = 'beta.2';
4444

4545
/** @var array<GeneratedMapper<object, object>|GeneratedMapper<array<mixed>, object>|GeneratedMapper<object, array<mixed>>> */
4646
private array $mapperRegistry = [];

0 commit comments

Comments
 (0)