Skip to content

Commit fab3784

Browse files
committed
chore: release 5.3.2
1 parent 22f753d commit fab3784

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,22 @@ 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.2] - 2021-04-12
49+
50+
_LTS release (PHP 7.1 only)_
51+
52+
- Disabled all other PHP versions for the 5.3.x series, only PHP 7.1 is allowed
53+
- Fixed a bug that removed `@return` and `@var` descriptions since 5.3.0
54+
- Fix OpenSearch feature and documented the config
55+
- Fix favicon config and document an example config
56+
- Fixed global namespace handling
57+
- Fixed a resume after parse step missing data
58+
- Add more tests on render, parse and update CLIs
59+
- Remove old lib `michelf/php-markdown` and use `erusev/parsedown` to fix an HTML parsing bug
60+
- Add GitHub SECURITY and FUNDING configs
61+
- Support `UnionType` of PHP 8
62+
- Support `namespace {//code}` syntax for namespaces without a name
63+
4864
## [5.3.1] - 2020-12-30
4965

5066
- Fixed: missing "final" keyword on a class page

src/Doctum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Doctum implements ArrayAccess
4949
public const VERSION_MAJOR = 5;
5050
public const VERSION_MINOR = 3;
5151
public const VERSION_PATCH = 2;
52-
public const IS_DEV = true;
52+
public const IS_DEV = false;
5353

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

0 commit comments

Comments
 (0)