From 39d5674c943a3fa4589ce05a0f99886c4a913afa Mon Sep 17 00:00:00 2001 From: Baptiste Leduc Date: Mon, 11 Mar 2024 14:41:08 +0100 Subject: [PATCH] Prepare 8.2.1 release (#53) --- CHANGELOG.md | 1 + src/AutoMapper.php | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6684704f..b3528651 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] +## [8.2.1] - 2024-03-11 ### Changed - [GH#50](https://github.com/jolicode/automapper/pull/50) Support generator mapping - [GH#36](https://github.com/jolicode/automapper/pull/36) Compatibility with nikic/php-parser v5 diff --git a/src/AutoMapper.php b/src/AutoMapper.php index 569871e0..50d479d9 100644 --- a/src/AutoMapper.php +++ b/src/AutoMapper.php @@ -45,12 +45,12 @@ */ class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface, MapperGeneratorMetadataRegistryInterface { - public const VERSION = '8.3.0-DEV'; - public const VERSION_ID = 80300; + public const VERSION = '8.2.1'; + public const VERSION_ID = 80201; public const MAJOR_VERSION = 8; - public const MINOR_VERSION = 3; - public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const MINOR_VERSION = 2; + public const RELEASE_VERSION = 1; + public const EXTRA_VERSION = ''; /** @var MapperGeneratorMetadataInterface[] */ private array $metadata = [];