From 037739073a6bd7ec7947ad8a84e14a1f0d0ea8b4 Mon Sep 17 00:00:00 2001 From: Baptiste Leduc Date: Thu, 14 Dec 2023 17:21:32 +0100 Subject: [PATCH] Prepare 8.1.0 release (#24) --- CHANGELOG.md | 2 ++ src/AutoMapper.php | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0476e8c1..26566ea1 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.1.0] - 2023-12-14 ### Added - [GH#22](https://github.com/jolicode/automapper/pull/22) Added generic AST extractor - [GH#21](https://github.com/jolicode/automapper/pull/21) Add VERSION constants within AutoMapper class and use it for transformers hashes diff --git a/src/AutoMapper.php b/src/AutoMapper.php index 2f29c5f6..3c530aa8 100644 --- a/src/AutoMapper.php +++ b/src/AutoMapper.php @@ -42,12 +42,12 @@ */ class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface, MapperGeneratorMetadataRegistryInterface { - public const VERSION = '8.1.0-DEV'; + public const VERSION = '8.1.0'; public const VERSION_ID = 80100; public const MAJOR_VERSION = 8; public const MINOR_VERSION = 1; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; /** @var MapperGeneratorMetadataInterface[] */ private array $metadata = [];