Skip to content

Commit b409fca

Browse files
authored
v0.11.4
2 parents 771400e + 9907732 commit b409fca

File tree

6 files changed

+301
-215
lines changed

6 files changed

+301
-215
lines changed

doc/LanguageModel/DesignUnits.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ types). An entity's list of statements is called body items.
8080
8181
# inherited from MixinDesignUnitWithContext
8282
@property
83-
def LibraryReferences(self) -> List[LibraryStatement]:
83+
def LibraryReferences(self) -> List[LibraryClause]:
8484
8585
@property
8686
def PackageReferences(self) -> List[UseClause]:
@@ -128,7 +128,7 @@ Package
128128
129129
# inherited from MixinDesignUnitWithContext
130130
@property
131-
def LibraryReferences(self) -> List[LibraryStatement]:
131+
def LibraryReferences(self) -> List[LibraryClause]:
132132
133133
@property
134134
def PackageReferences(self) -> List[UseClause]:
@@ -175,7 +175,7 @@ Architeture
175175
176176
# inherited from MixinDesignUnitWithContext
177177
@property
178-
def LibraryReferences(self) -> List[LibraryStatement]:
178+
def LibraryReferences(self) -> List[LibraryClause]:
179179
180180
@property
181181
def PackageReferences(self) -> List[UseClause]:
@@ -220,7 +220,7 @@ Package Body
220220
221221
# inherited from MixinDesignUnitWithContext
222222
@property
223-
def LibraryReferences(self) -> List[LibraryStatement]:
223+
def LibraryReferences(self) -> List[LibraryClause]:
224224
225225
@property
226226
def PackageReferences(self) -> List[UseClause]:

doc/LanguageModel/Miscellaneous.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ a design has the two child nodes: ``Libraries`` and ``Documents``. Each is a
3636
3737
# from Design
3838
@property
39-
def Libraries(self) -> List[LibraryStatement]:
39+
def Libraries(self) -> List[LibraryClause]:
4040
4141
@property
4242
def Documents(self) -> List[Document]:
@@ -45,24 +45,24 @@ a design has the two child nodes: ``Libraries`` and ``Documents``. Each is a
4545
4646
.. _vhdlmodel-library:
4747

48-
LibraryStatement
49-
================
48+
LibraryClause
49+
=============
5050

5151
A library contains multiple *design units*. Each design unit listed in a library
5252
is a *primary* design unit like: ``configuration``, ``entity``, ``package`` or
5353
``context``.
5454

55-
**Condensed definition of class** :class:`~pyVHDLModel.VHDLModel.LibraryStatement`:
55+
**Condensed definition of class** :class:`~pyVHDLModel.VHDLModel.LibraryClause`:
5656

5757
.. code-block:: Python
5858
5959
@export
60-
class LibraryStatement(ModelEntity):
60+
class LibraryClause(ModelEntity):
6161
# inherited from ModelEntity
6262
@property
6363
def Parent(self) -> ModelEntity:
6464
65-
# from LibraryStatement
65+
# from LibraryClause
6666
@property
6767
def Contexts(self) -> List[Context]:
6868

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _LatestTagName():
3737

3838
# The full version, including alpha/beta/rc tags
3939
version = "0.11" # The short X.Y version.
40-
release = "0.11.3" # The full version, including alpha/beta/rc tags.
40+
release = "0.11.4" # 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)