Skip to content

Commit ff3e970

Browse files
committed
chore: release 5.3.1
1 parent 3039063 commit ff3e970

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased] - yyyy-mm-dd
88

9-
## [5.3.1] - 2020-mm-dd
9+
## [5.3.1] - 2020-12-30
1010

1111
- Fixed: missing "final" keyword on a class page
1212
- Made the minimum required php version more precise on composer.json and README.md

scripts/make-release.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,13 @@ get_version "${PHP_BIN:-php} doctum.phar"
184184
echo "Version after build: ${VERSION}"
185185
if [ "${VERSION_BEFORE}" = "${VERSION}" ]; then
186186
echo "Done."
187+
188+
if [ -z "${SKIP_PUBLISH_QUESTION}${VERSION_MATCH_DEV}" ]; then
189+
publishArtifacts
190+
fi
191+
187192
exit 0;
188193
else
189194
echo "Versions do not match."
190195
exit 1;
191196
fi
192-
193-
if [ -z "${SKIP_PUBLISH_QUESTION}" ] && [ -z "${VERSION_MATCH_DEV}" ]; then
194-
publishArtifacts
195-
fi

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 = 1;
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)