From 200d2c5e5e6088733de5940b0e713939b2b8dccb Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 29 Sep 2021 07:39:21 +0200 Subject: [PATCH] Fixed Any value in VHDLVersion. Release as v0.13.2. --- doc/conf.py | 4 ++-- pyVHDLModel/__init__.py | 4 +++- setup.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 27bb5e7aa..6085ac67e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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" diff --git a/pyVHDLModel/__init__.py b/pyVHDLModel/__init__.py index 131f01746..e475aefad 100644 --- a/pyVHDLModel/__init__.py +++ b/pyVHDLModel/__init__.py @@ -46,7 +46,7 @@ from pydecor import export -__version__ = "0.14.0" +__version__ = "0.13.2" SimpleOrAttribute = Union['SimpleName', 'AttributeName'] @@ -99,6 +99,7 @@ class VHDLVersion(Enum): This enumeration supports compare operators. """ + Any = -1 VHDL87 = 87 VHDL93 = 93 VHDL2002 = 2002 @@ -116,6 +117,7 @@ class VHDLVersion(Enum): 2002: VHDL2002, 2008: VHDL2008, 2019: VHDL2019, + "Any": Any, "87": VHDL87, "93": VHDL93, "02": VHDL2002, diff --git a/setup.py b/setup.py index 89d5a2ca6..95047424b 100644 --- a/setup.py +++ b/setup.py @@ -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",