Skip to content

Commit

Permalink
chore: release 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jan 9, 2022
1 parent ca5414b commit 05d1c28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - yyyy-mm-dd

## [5.5.0] - 2022-01-09

- Fixed PHP errors when non configuration file was given, now it displays the error message
- Adjust error handler for PHP 8.0 silenced errors
- Fix PHP 8.1 errors on ArrayAccess methods signatures
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 = 0;
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 05d1c28

Please sign in to comment.