Skip to content

Commit

Permalink
daliuge 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
calgray committed Dec 16, 2021
1 parent 759dcd5 commit de9d17f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions daliuge-common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
# The RELEASE flag allows us to create development versions properly supported
# by setuptools/pkg_resources or "final" versions.
MAJOR = 2
MINOR = 0
PATCH = 1
MINOR = 1
PATCH = 0
VERSION = (MAJOR, MINOR, PATCH)
VERSION_FILE = "dlg/common/version.py"
RELEASE = True
Expand Down
4 changes: 2 additions & 2 deletions daliuge-engine/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
# The RELEASE flag allows us to create development versions properly supported
# by setuptools/pkg_resources or "final" versions.
MAJOR = 2
MINOR = 0
PATCH = 1
MINOR = 1
PATCH = 0
RELEASE = True
VERSION = "%d.%d.%d" % (MAJOR, MINOR, PATCH)
VERSION_FILE = "dlg/runtime/version.py"
Expand Down
4 changes: 2 additions & 2 deletions daliuge-translator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
# The RELEASE flag allows us to create development versions properly supported
# by setuptools/pkg_resources or "final" versions.
MAJOR = 2
MINOR = 0
PATCH = 1
MINOR = 1
PATCH = 0
RELEASE = True
VERSION = "%d.%d.%d" % (MAJOR, MINOR, PATCH)
VERSION_FILE = "dlg/translator/version.py"
Expand Down

0 comments on commit de9d17f

Please sign in to comment.