Skip to content

Commit

Permalink
Merge pull request #105 from jolicode/feat/prepare-9.0.0-beta2
Browse files Browse the repository at this point in the history
chore(release): prepare 9.0.0-beta2 release
  • Loading branch information
joelwurtz committed Apr 2, 2024
2 parents 80336ef + 2015ab2 commit ff562a8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/build-documentation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ poetry run mike deploy --push --remote gh-pages --update-aliases 8.2.2 latest
poetry run mike set-default --push latest

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

# clean fake remote
cd ./.build
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.0.0-beta.2] - 2024-04-02
### Added
- [GH#95](https://github.com/jolicode/automapper/pull/95) Add Api Platform integration
- [GH#103](https://github.com/jolicode/automapper/pull/103) Add debug command and profiler for the symfony bundle

### Changed
- [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
- [GH#102](https://github.com/jolicode/automapper/pull/102) Change default reload behavior for the symfony bundle

### Fixed
- [GH#101](https://github.com/jolicode/automapper/pull/101) Fix some inconsistencies with symfony/serializer behavior

## [9.0.0-beta.1] - 2024-03-25
### Added
- [GH#61](https://github.com/jolicode/automapper/pull/61) Add event system during code generation, make serializer optional thanks to it
Expand Down
6 changes: 3 additions & 3 deletions src/AutoMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
*/
class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface
{
public const VERSION = '9.0.0-dev';
public const VERSION_ID = 90000;
public const VERSION = '9.0.0-beta.2';
public const VERSION_ID = 90000.2;
public const MAJOR_VERSION = 9;
public const MINOR_VERSION = 0;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'dev';
public const EXTRA_VERSION = 'beta.2';

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

0 comments on commit ff562a8

Please sign in to comment.