diff --git a/CHANGELOG.md b/CHANGELOG.md index b1148474..0a03f6ab 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] + +## [8.2.0] - 2024-03-11 ### Added - [GH#25](https://github.com/jolicode/automapper/pull/25) Pass full input object to property custom transformers - [GH#10](https://github.com/jolicode/automapper/pull/10) Introduce custom transformers @@ -203,7 +205,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/8.1.0...HEAD +[Unreleased]: https://github.com/jolicode/automapper/compare/8.2.0...HEAD +[8.2.0]: https://github.com/janephp/janephp/compare/8.1.0...8.2.0 [8.1.0]: https://github.com/janephp/janephp/compare/8.0.2...8.1.0 [8.0.2]: https://github.com/janephp/janephp/compare/8.0.1...8.0.2 [8.0.1]: https://github.com/janephp/janephp/compare/8.0.0...8.0.1 diff --git a/src/AutoMapper.php b/src/AutoMapper.php index 7116da86..de8d17e5 100644 --- a/src/AutoMapper.php +++ b/src/AutoMapper.php @@ -45,12 +45,12 @@ */ class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface, MapperGeneratorMetadataRegistryInterface { - public const VERSION = '8.2.0-DEV'; + public const VERSION = '8.2.0'; public const VERSION_ID = 80200; public const MAJOR_VERSION = 8; public const MINOR_VERSION = 2; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; /** @var MapperGeneratorMetadataInterface[] */ private array $metadata = [];