From 35918bc1fbdff81b0f2b8aaa858f9a089b393d35 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Mon, 6 May 2024 11:33:00 +0200 Subject: [PATCH] Prepare 9.0.0 release --- CHANGELOG.md | 4 +++- src/AutoMapper.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 642560dd..5b2562c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [9.0.0] - 2024-05-06 ### Added - [GH#114](https://github.com/jolicode/automapper/pull/114) Introducing Mapper Attribute - [GH#117](https://github.com/jolicode/automapper/pull/117) Allow multiple source/target, allow overriding attribute with priority system @@ -291,7 +292,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed * [AutoMapper] [GH#179](https://github.com/janephp/janephp/pull/179) Fixing incompatible changes in Symfony 5.0 -[Unreleased]: https://github.com/jolicode/automapper/compare/9.0.0-beta.2...HEAD +[Unreleased]: https://github.com/jolicode/automapper/compare/9.0.0...HEAD +[9.0.0]: https://github.com/janephp/janephp/compare/9.0.0-beta.2...9.0.0 [9.0.0-beta.2]: https://github.com/janephp/janephp/compare/9.0.0-beta.1...9.0.0-beta.2 [9.0.0-beta.1]: https://github.com/janephp/janephp/compare/8.2.2...9.0.0-beta.1 [8.2.2]: https://github.com/janephp/janephp/compare/8.2.1...8.2.2 diff --git a/src/AutoMapper.php b/src/AutoMapper.php index f8c601c2..7f63f276 100644 --- a/src/AutoMapper.php +++ b/src/AutoMapper.php @@ -35,7 +35,7 @@ */ class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface { - public const VERSION = '9.0.0-dev'; + public const VERSION = '9.0.0'; /** @var array|GeneratedMapper, object>|GeneratedMapper>> */ private array $mapperRegistry = [];