Skip to content

Commit

Permalink
Prepare for 8.2.0 release (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
Korbeil committed Mar 11, 2024
1 parent 56fade6 commit 0061605
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion 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.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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 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.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 = [];
Expand Down

0 comments on commit 0061605

Please sign in to comment.