File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -184,12 +184,13 @@ get_version "${PHP_BIN:-php} doctum.phar"
184184echo " Version after build: ${VERSION} "
185185if [ " ${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;
188193else
189194 echo " Versions do not match."
190195 exit 1;
191196fi
192-
193- if [ -z " ${SKIP_PUBLISH_QUESTION} " ] && [ -z " ${VERSION_MATCH_DEV} " ]; then
194- publishArtifacts
195- fi
Original file line number Diff line number Diff 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 ' : '' );
You can’t perform that action at this time.
0 commit comments