Skip to content

Commit

Permalink
Fixed Any value in VHDLVersion. Release as v0.13.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Sep 29, 2021
1 parent 8eb0973 commit 200d2c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def _LatestTagName():
return check_output(["git", "describe", "--abbrev=0", "--tags"], universal_newlines=True).strip()

# The full version, including alpha/beta/rc tags
version = "0.14" # The short X.Y version.
release = "0.14.0" # The full version, including alpha/beta/rc tags.
version = "0.13" # The short X.Y version.
release = "0.13.2" # The full version, including alpha/beta/rc tags.
try:
if _IsUnderGitControl:
latestTagName = _LatestTagName()[1:] # remove prefix "v"
Expand Down
4 changes: 3 additions & 1 deletion pyVHDLModel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from pydecor import export


__version__ = "0.14.0"
__version__ = "0.13.2"

SimpleOrAttribute = Union['SimpleName', 'AttributeName']

Expand Down Expand Up @@ -99,6 +99,7 @@ class VHDLVersion(Enum):
This enumeration supports compare operators.
"""

Any = -1
VHDL87 = 87
VHDL93 = 93
VHDL2002 = 2002
Expand All @@ -116,6 +117,7 @@ class VHDLVersion(Enum):
2002: VHDL2002,
2008: VHDL2008,
2019: VHDL2019,
"Any": Any,
"87": VHDL87,
"93": VHDL93,
"02": VHDL2002,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# Assemble all package information
setuptools_setup(
name=projectName,
version="0.14.0",
version="0.13.2",

author="Patrick Lehmann",
author_email="Paebbels@gmail.com",
Expand Down

0 comments on commit 200d2c5

Please sign in to comment.