Skip to content

Commit b241320

Browse files
committed
Bumped version to v0.9.0.
1 parent dcc1037 commit b241320

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

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

doc/index.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,17 @@ News
6767
.. rubric:: Model and documentation enhancements
6868

6969
* Made generic, port, and parameter items a subclass of the matching object classes.
70-
* Finalized literals, expressions and types.
70+
* Added missing object representations for language features.
71+
* Finalized literals, expressions and types.
72+
* Added properties to empty placeholder classes
7173
* Corrected class hierarchy according to LRM.
7274
* Enhanced class documentation and cross references.
7375
* New documentation chapter for literals and expressions.
7476
* Added inheritance diagrams as overviews to documentation sections.
77+
* Added condensed code snippets outlining the main interface of a model's object.
78+
* New Single-File GitHub Action workflow (pipeline) including tests, documentation, packaging and publishing.
79+
* Added Dependabot configuration file.
80+
* Removed 2 dependencies to patched Sphinx extensions (now fixed in Sphinx).
7581
* ...
7682

7783
.. only:: html

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# Assemble all package information
5454
setuptools_setup(
5555
name=projectName,
56-
version="0.8.2",
56+
version="0.9.0",
5757

5858
author="Patrick Lehmann",
5959
author_email="[email protected]",

0 commit comments

Comments
 (0)