Skip to content

Commit

Permalink
v0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels authored Sep 29, 2021
2 parents 140fd19 + 200d2c5 commit 594fa7f
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 11 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,22 @@ jobs:
- name: ☑ Run unit tests
run: |
python -m pytest -rA tests/unit
python -m pytest -rA --junitxml=TestReport.xml tests/unit
- name: 📤 Upload 'TestReport.xml' artifact
uses: actions/upload-artifact@v2
with:
name: TestReport-${{ env.PYTHON }}
path: TestReport.xml
if-no-files-found: error
retention-days: 1

- name: 📊 Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: TestReport.xml
comment_title: Unit Test Results (Python ${{ env.PYTHON }})

Coverage:
name: 📈 Collect Coverage Data using Python 3.9
Expand Down Expand Up @@ -297,7 +312,7 @@ jobs:
RUN apk add -U --no-cache graphviz
EOF
- name: 🛳️ Build documentation from './pyVHDLModel/doc' and publish to GitHub Pages
- name: 🛳️ Build documentation using container vhdl/doc and publish to GitHub Pages
uses: buildthedocs/btd@v0
with:
token: ${{ github.token }}
Expand Down
13 changes: 8 additions & 5 deletions doc/Glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ Glossary
LRM
IEEE Standard for VHDL Language Reference Manual

* IEEE Std. 1076-1987
* IEEE Std. 1076-1993
* IEEE Std. 1076-2002
* IEEE Std. 1076-2008 - https://standards.ieee.org/standard/1076-2008.html
* IEEE Std. 1076-2019 - https://standards.ieee.org/standard/1076-2019.html
* `1076-2019 <https://ieeexplore.ieee.org/document/8938196>`__.
* `1076-2008 <https://ieeexplore.ieee.org/document/4772740>`__ aka IEC 61691-1-1:2011.
* `1076-2002 <https://ieeexplore.ieee.org/document/1003477>`__ aka IEC 61691-1-1 Ed.1 (2004-10).
* `1076-2000 <https://ieeexplore.ieee.org/document/893288>`__.
* `1076-1993 <https://ieeexplore.ieee.org/document/392561>`__.
* `1076-1987 <https://ieeexplore.ieee.org/document/26487>`__.

See :ref:`VASG:About:Standards` for further details.
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _LatestTagName():

# The full version, including alpha/beta/rc tags
version = "0.13" # The short X.Y version.
release = "0.13.1" # The full version, including alpha/beta/rc tags.
release = "0.13.2" # The full version, including alpha/beta/rc tags.
try:
if _IsUnderGitControl:
latestTagName = _LatestTagName()[1:] # remove prefix "v"
Expand Down Expand Up @@ -211,7 +211,8 @@ def _LatestTagName():
# Sphinx.Ext.InterSphinx
# ==============================================================================
intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
'python': ('https://docs.python.org/3', None),
'vasg': ('https://IEEE-P1076.gitlab.io/', None),
}


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.13.1"
__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.13.1",
version="0.13.2",

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

0 comments on commit 594fa7f

Please sign in to comment.