Skip to content

Commit

Permalink
Prepare 8.1.0 release (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Korbeil committed Dec 14, 2023
1 parent 275cb6f commit 0377390
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/AutoMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down

0 comments on commit 0377390

Please sign in to comment.