Skip to content

Commit

Permalink
v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels authored Aug 27, 2021
2 parents 4b61c6d + 991fe5a commit 913cded
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ for entity in document.Entities:
print(" generics:")
for generic in entity.GenericItems:
print(" - {} : {!s} {}".format(
generic.Identifier, generic.Mode, generic.Subtype)
", ".join([str(i) for i in generic.Identifiers]), generic.Mode, generic.Subtype)
)
print(" ports:")
for port in entity.PortItems:
print(" - {} : {!s} {}".format(
port.Identifier, port.Mode, port.Subtype)
", ".join([str(i) for i in port.Identifiers]), port.Mode, port.Subtype)
)
```

Expand Down
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.11" # The short X.Y version.
release = "0.11.5" # The full version, including alpha/beta/rc tags.
version = "0.12" # The short X.Y version.
release = "0.12.0" # The full version, including alpha/beta/rc tags.
try:
if _IsUnderGitControl:
latestTagName = _LatestTagName()[1:] # remove prefix "v"
Expand Down
4 changes: 2 additions & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r ../requirements.txt
# Enforce latest version on ReadTheDocs
sphinx>=4.0.2
sphinx>=4.1.2

# Sphinx Extenstions
#sphinx.ext.coverage
Expand All @@ -19,4 +19,4 @@ sphinx_autodoc_typehints>=1.12.0
#btd.sphinx.inheritance_diagram>=2.3.1.post1

# Enforce newer version on ReadTheDocs (currently using 2.3.1)
Pygments>=2.9.0
Pygments>=2.10.0
11 changes: 8 additions & 3 deletions pyVHDLModel/SyntaxModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2629,7 +2629,7 @@ def __init__(self, statements: Iterable[SequentialStatement] = None):
SequentialStatements.__init__(self, statements)

@property
def Choises(self) -> List[Choice]:
def Choices(self) -> List[Choice]:
return self._choices


Expand All @@ -2643,7 +2643,7 @@ def __init__(self, choices: Iterable[ConcurrentChoice], declaredItems: Iterable
self._choices = [c for c in choices]

@property
def Choises(self) -> List[ConcurrentChoice]:
def Choices(self) -> List[ConcurrentChoice]:
return self._choices

def __str__(self) -> str:
Expand Down Expand Up @@ -2989,7 +2989,7 @@ def __init__(self, choices: Iterable[SequentialChoice], statements: Iterable[Seq
self._choices = [c for c in choices]

@property
def Choises(self) -> List[SequentialChoice]:
def Choices(self) -> List[SequentialChoice]:
return self._choices

def __str__(self) -> str:
Expand Down Expand Up @@ -3125,6 +3125,11 @@ class ExitStatement(LoopControlStatement):
pass


@export
class NullStatement(SequentialStatement):
pass


@export
class WaitStatement(SequentialStatement, MixinConditional):
_sensitivityList: Nullable[List[Name]]
Expand Down
2 changes: 1 addition & 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.11.5"
__version__ = "0.12.0"

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

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.11.5",
version="0.12.0",

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

0 comments on commit 913cded

Please sign in to comment.