Skip to content

Commit

Permalink
chore: release 5.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Dec 16, 2023
1 parent daad190 commit fbece8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
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).

## [5.5.4] - 2023-12-16

- Fix PHP 8.2 dynamic properties for configurations with the `language` key

## [5.5.3] - 2023-10-11

- Fix crash on `IntersectionType` (intersection types)
Expand Down
2 changes: 1 addition & 1 deletion src/Doctum.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Doctum implements ArrayAccess
public const VERSION_MAJOR = 5;
public const VERSION_MINOR = 5;
public const VERSION_PATCH = 4;
public const IS_DEV = true;
public const IS_DEV = false;

//@phpstan-ignore-next-line
public const VERSION = self::VERSION_MAJOR . '.' . self::VERSION_MINOR . '.' . self::VERSION_PATCH . (self::IS_DEV ? '-dev' : '');
Expand Down

0 comments on commit fbece8c

Please sign in to comment.