Skip to content

Commit 6b03c7b

Browse files
Release version 0.3.1
1 parent afe87ba commit 6b03c7b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/xlm/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
_MINOR = os.environ.get("XLM_CORE_VERSION_MINOR", "3")
55
# On main and in a nightly release the patch should be one ahead of the last
66
# released build.
7-
_PATCH = os.environ.get("XLM_CORE_VERSION_PATCH", "0")
7+
_PATCH = os.environ.get("XLM_CORE_VERSION_PATCH", "1")
88
# This is mainly for nightly builds (if the project has it) which have the suffix ".dev$DATE". See
99
# https://semver.org/#is-v123-a-semantic-version for the semantics.
10-
_SUFFIX = os.environ.get("XLM_CORE_VERSION_SUFFIX", "-alpha")
10+
_SUFFIX = os.environ.get("XLM_CORE_VERSION_SUFFIX", "")
1111

1212
VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
1313
VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX)

xlm-models/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
_MINOR = os.environ.get("XLM_CORE_VERSION_MINOR", "3")
55
# On main and in a nightly release the patch should be one ahead of the last
66
# released build.
7-
_PATCH = os.environ.get("XLM_CORE_VERSION_PATCH", "0")
7+
_PATCH = os.environ.get("XLM_CORE_VERSION_PATCH", "1")
88
# This is mainly for nightly builds (if the project has it) which have the suffix ".dev$DATE". See
99
# https://semver.org/#is-v123-a-semantic-version for the semantics.
10-
_SUFFIX = os.environ.get("XLM_CORE_VERSION_SUFFIX", "-alpha")
10+
_SUFFIX = os.environ.get("XLM_CORE_VERSION_SUFFIX", "")
1111

1212
VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
1313
VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX)

0 commit comments

Comments
 (0)