Skip to content

Commit fbece8c

Browse files
committedDec 16, 2023
chore: release 5.5.4
1 parent daad190 commit fbece8c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [5.5.4] - 2023-12-16
9+
10+
- Fix PHP 8.2 dynamic properties for configurations with the `language` key
11+
812
## [5.5.3] - 2023-10-11
913

1014
- Fix crash on `IntersectionType` (intersection types)

‎src/Doctum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Doctum implements ArrayAccess
5353
public const VERSION_MAJOR = 5;
5454
public const VERSION_MINOR = 5;
5555
public const VERSION_PATCH = 4;
56-
public const IS_DEV = true;
56+
public const IS_DEV = false;
5757

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

0 commit comments

Comments
 (0)
Please sign in to comment.