From 1fb11e71ce2b6861fe6190f3626b99a7a21808a7 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Tue, 3 Sep 2024 12:00:08 +0200 Subject: [PATCH] Prepare 9.1.2 release --- CHANGELOG.md | 5 ++++- src/AutoMapper.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c9fb87..ffba5c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [9.1.2] - 2024-09-03 ### Fixed - [GH#174](https://github.com/jolicode/automapper/pull/174) Fix race condition when writing generated mappers - [GH#167](https://github.com/jolicode/automapper/pull/167) Fix property metadata attribute name in docs @@ -329,7 +331,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.1.1...HEAD +[Unreleased]: https://github.com/jolicode/automapper/compare/9.1.2...HEAD +[9.1.2]: https://github.com/janephp/janephp/compare/9.1.1...9.1.2 [9.1.1]: https://github.com/janephp/janephp/compare/9.1.0...9.1.1 [9.1.0]: https://github.com/janephp/janephp/compare/9.0.2...9.1.0 [9.0.2]: https://github.com/janephp/janephp/compare/9.0.1...9.0.2 diff --git a/src/AutoMapper.php b/src/AutoMapper.php index 45f9c00..2eef5c3 100644 --- a/src/AutoMapper.php +++ b/src/AutoMapper.php @@ -37,7 +37,7 @@ */ class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface { - public const VERSION = '10.0.0-dev'; + public const VERSION = '9.1.2'; /** @var array|GeneratedMapper, object>|GeneratedMapper>> */ private array $mapperRegistry = [];