Skip to content

Commit 647afcf

Browse files
authored
v0.11.0
2 parents 5989e34 + ff14f90 commit 647afcf

File tree

9 files changed

+411
-314
lines changed

9 files changed

+411
-314
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ for entity in document.Entities:
6666
print(" generics:")
6767
for generic in entity.Generics:
6868
print(" - {} : {!s} {}".format(
69-
generic.Name, generic.Mode, generic.SubTypeIndication)
69+
generic.Identifier, generic.Mode, generic.SubTypeIndication)
7070
)
7171
print(" ports:")
7272
for port in entity.Ports:
7373
print(" - {} : {!s} {}".format(
74-
port.Name, port.Mode, port.SubTypeIndication)
74+
port.Identifier, port.Mode, port.SubTypeIndication)
7575
)
7676
```
7777

doc/LanguageModel/Enumerations.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ is a placeholder for omitted modes. The mode is then determined from the context
5858
5959
.. _vhdlmodel-objclass:
6060

61-
Object Class
62-
============
61+
Object ObjectClass
62+
==================
6363

6464
In addition to the 4 object classes defined by VHDL (`Constant`, `Variable`,
6565
`Signal` and `File`), `Default` is used when no object class is defined. In
6666
such a case, the object class is determined from the context.
6767

68-
**Condensed definition of class** :class:`~pyVHDLModel.VHDLModel.Class`:
68+
**Condensed definition of class** :class:`~pyVHDLModel.VHDLModel.ObjectClass`:
6969

7070
.. code-block:: Python
7171
7272
@export
73-
class Class(Enum):
73+
class ObjectClass(Enum):
7474
Default = 0
7575
Constant = 1
7676
Variable = 2

doc/LanguageModel/InterfaceItems.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ GenericConstantInterfaceItem
6464
@property
6565
def SubType(self) -> SubType:
6666
67-
# inherited from WithDefaultExpression
67+
# inherited from WithDefaultExpressionMixin
6868
@property
6969
def DefaultExpression(self) -> BaseExpression:
7070
@@ -176,7 +176,7 @@ PortSignalInterfaceItem
176176
@property
177177
def SubType(self) -> SubType:
178178
179-
# inherited from WithDefaultExpression
179+
# inherited from WithDefaultExpressionMixin
180180
@property
181181
def DefaultExpression(self) -> BaseExpression:
182182
@@ -218,7 +218,7 @@ ParameterConstantInterfaceItem
218218
@property
219219
def SubType(self) -> SubType:
220220
221-
# inherited from WithDefaultExpression
221+
# inherited from WithDefaultExpressionMixin
222222
@property
223223
def DefaultExpression(self) -> BaseExpression:
224224
@@ -255,7 +255,7 @@ ParameterVariableInterfaceItem
255255
@property
256256
def SubType(self) -> SubType:
257257
258-
# inherited from WithDefaultExpression
258+
# inherited from WithDefaultExpressionMixin
259259
@property
260260
def DefaultExpression(self) -> BaseExpression:
261261
@@ -292,7 +292,7 @@ ParameterSignalInterfaceItem
292292
@property
293293
def SubType(self) -> SubType:
294294
295-
# inherited from WithDefaultExpression
295+
# inherited from WithDefaultExpressionMixin
296296
@property
297297
def DefaultExpression(self) -> BaseExpression:
298298

doc/LanguageModel/ObjectDeclarations.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ a deferred constant has a reference to the *regular* constant of the same name.
104104
@property
105105
def SubType(self) -> SubType:
106106
107-
# inherited from WithDefaultExpression
107+
# inherited from WithDefaultExpressionMixin
108108
@property
109109
def ConstantReference(self) -> Constant:
110110
@@ -169,7 +169,7 @@ expression.
169169
@property
170170
def SubType(self) -> SubType:
171171
172-
# inherited from WithDefaultExpression
172+
# inherited from WithDefaultExpressionMixin
173173
@property
174174
def DefaultExpression(self) -> BaseExpression:
175175
@@ -231,7 +231,7 @@ assigned via a default expression.
231231
@property
232232
def SubType(self) -> SubType:
233233
234-
# inherited from WithDefaultExpression
234+
# inherited from WithDefaultExpressionMixin
235235
@property
236236
def DefaultExpression(self) -> BaseExpression:
237237

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.9" # The short X.Y version.
40-
release = "0.10.5" # The full version, including alpha/beta/rc tags.
39+
version = "0.11" # The short X.Y version.
40+
release = "0.11.0" # The full version, including alpha/beta/rc tags.
4141
try:
4242
if _IsUnderGitControl:
4343
latestTagName = _LatestTagName()[1:] # remove prefix "v"

0 commit comments

Comments
 (0)