Skip to content

Commit 9e3f74d

Browse files
committed
Merge branch 'QA_5_3' into main
2 parents 7bdaf4e + 8e1076f commit 9e3f74d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4545
- Support `UnionType` of PHP 8
4646
- Support `namespace {//code}` syntax for namespaces without a name
4747

48-
## [5.3.3] - 2021-MM-DD
48+
## [5.3.3] - 2021-04-21
4949

5050
_LTS release (PHP 7.1 only)_
5151

5252
- Fixed Search results descriptions render
5353
- Fixed PHP 8.0 usort does not want bool anymore on `GitVersionCollection` setups
54+
- Fixed CSS issues with method descriptions
55+
- Fixed phpdoc blocks render having `<code>` HTML tags
56+
- Fixed composer autoload warnings on PSR-4 classes
57+
- Adjusted `.gitattributes` to exclude useless files from composer bundles
5458

5559
## [5.3.2] - 2021-04-12
5660

src/Doctum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Doctum implements ArrayAccess
5151
public const VERSION_MAJOR = 5;
5252
public const VERSION_MINOR = 4;
5353
public const VERSION_PATCH = 1;
54-
public const IS_DEV = true;
54+
public const IS_DEV = false;
5555

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

0 commit comments

Comments
 (0)