Skip to content

Commit 7d4c6a4

Browse files
committed
Bumped version to v0.2.0.
1 parent 586bc15 commit 7d4c6a4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def _LatestTagName():
3636
return check_output(["git", "describe", "--abbrev=0", "--tags"], universal_newlines=True).strip()
3737

3838
# The full version, including alpha/beta/rc tags
39-
version = "0.1" # The short X.Y version.
40-
release = "0.1.1" # The full version, including alpha/beta/rc tags.
39+
version = "0.2" # The short X.Y version.
40+
release = "0.2.0" # The full version, including alpha/beta/rc tags.
4141
try:
4242
if _IsUnderGitControl:
4343
latestTagName = _LatestTagName()[1:] # remove prefix "v"

pyEDAA/ProjectModel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from pydecor import export
4040

4141

42-
__version__ = "0.1.1"
42+
__version__ = "0.2.0"
4343

4444

4545
@export

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
gitHubNamespace = "edaa-org"
4141
projectName = "ProjectModel"
4242
projectNameWithPrefix = "pyEDAA." + projectName
43-
version = "0.1.1"
43+
version = "0.2.0"
4444

4545
# Read README for upload to PyPI
4646
readmeFile = Path("README.md")

0 commit comments

Comments
 (0)