Skip to content

Commit

Permalink
Prepare 9.0.0-beta.1 release (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Korbeil committed Mar 25, 2024
1 parent c29a34c commit 8f2aeb3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/build-documentation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ poetry run mike deploy --push --remote gh-pages --update-aliases 8.2.2 latest
poetry run mike set-default --push latest

# build documentation for 9.x
# git checkout 9.0 # currently a branch, will be a tag later on
# poetry run mike deploy --push --remote gh-pages 9.0-BETA
git checkout tags/9.0.0-beta.1
poetry run mike deploy --push --remote gh-pages 9.0.0-beta.1

# clean fake remote
cd ./.build
Expand Down
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]

## [9.0.0-beta.1] - 2024-03-25
### Added
- [GH#61](https://github.com/jolicode/automapper/pull/61) Add event system during code generation, make serializer optional thanks to it
- [GH#63](https://github.com/jolicode/automapper/pull/63) Merge bundle directly into automapper, will replace automapper-bundle
Expand Down
6 changes: 3 additions & 3 deletions src/AutoMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
*/
class AutoMapper implements AutoMapperInterface, AutoMapperRegistryInterface
{
public const VERSION = '9.0.0-DEV';
public const VERSION_ID = 90000;
public const VERSION = '9.0.0-beta.1';
public const VERSION_ID = 90000.1;
public const MAJOR_VERSION = 9;
public const MINOR_VERSION = 0;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = 'beta.1';

/** @var array<GeneratedMapper<object, object>|GeneratedMapper<array<mixed>, object>|GeneratedMapper<object, array<mixed>>> */
private array $mapperRegistry = [];
Expand Down

0 comments on commit 8f2aeb3

Please sign in to comment.