Skip to content

Commit

Permalink
v0.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels authored Aug 22, 2021
2 parents 771400e + 9907732 commit b409fca
Show file tree
Hide file tree
Showing 6 changed files with 301 additions and 215 deletions.
8 changes: 4 additions & 4 deletions doc/LanguageModel/DesignUnits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ types). An entity's list of statements is called body items.
# inherited from MixinDesignUnitWithContext
@property
def LibraryReferences(self) -> List[LibraryStatement]:
def LibraryReferences(self) -> List[LibraryClause]:
@property
def PackageReferences(self) -> List[UseClause]:
Expand Down Expand Up @@ -128,7 +128,7 @@ Package
# inherited from MixinDesignUnitWithContext
@property
def LibraryReferences(self) -> List[LibraryStatement]:
def LibraryReferences(self) -> List[LibraryClause]:
@property
def PackageReferences(self) -> List[UseClause]:
Expand Down Expand Up @@ -175,7 +175,7 @@ Architeture
# inherited from MixinDesignUnitWithContext
@property
def LibraryReferences(self) -> List[LibraryStatement]:
def LibraryReferences(self) -> List[LibraryClause]:
@property
def PackageReferences(self) -> List[UseClause]:
Expand Down Expand Up @@ -220,7 +220,7 @@ Package Body
# inherited from MixinDesignUnitWithContext
@property
def LibraryReferences(self) -> List[LibraryStatement]:
def LibraryReferences(self) -> List[LibraryClause]:
@property
def PackageReferences(self) -> List[UseClause]:
Expand Down
12 changes: 6 additions & 6 deletions doc/LanguageModel/Miscellaneous.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ a design has the two child nodes: ``Libraries`` and ``Documents``. Each is a
# from Design
@property
def Libraries(self) -> List[LibraryStatement]:
def Libraries(self) -> List[LibraryClause]:
@property
def Documents(self) -> List[Document]:
Expand All @@ -45,24 +45,24 @@ a design has the two child nodes: ``Libraries`` and ``Documents``. Each is a
.. _vhdlmodel-library:

LibraryStatement
================
LibraryClause
=============

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

**Condensed definition of class** :class:`~pyVHDLModel.VHDLModel.LibraryStatement`:
**Condensed definition of class** :class:`~pyVHDLModel.VHDLModel.LibraryClause`:

.. code-block:: Python
@export
class LibraryStatement(ModelEntity):
class LibraryClause(ModelEntity):
# inherited from ModelEntity
@property
def Parent(self) -> ModelEntity:
# from LibraryStatement
# from LibraryClause
@property
def Contexts(self) -> List[Context]:
Expand Down
2 changes: 1 addition & 1 deletion 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.11" # The short X.Y version.
release = "0.11.3" # The full version, including alpha/beta/rc tags.
release = "0.11.4" # The full version, including alpha/beta/rc tags.
try:
if _IsUnderGitControl:
latestTagName = _LatestTagName()[1:] # remove prefix "v"
Expand Down
Loading

0 comments on commit b409fca

Please sign in to comment.