Skip to content

Commit

Permalink
Prepare 8.2.1 release (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
Korbeil authored Mar 11, 2024
1 parent 5ac185b commit 39d5674
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/AutoMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down

0 comments on commit 39d5674

Please sign in to comment.