diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 99de181c..082384bd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,12 @@ Please keep this file at 72 line width so that we can copy-paste the release logs directly into commit messages. +2022.4.30a5 (2022-04-09) +======================== +This is a pre-release version. + +* Fix dangling references in V3RC02 (#63) + 2022.4.30a4 (2022-04-09) ======================== This is a pre-release version. diff --git a/aas_core_meta/__init__.py b/aas_core_meta/__init__.py index b2b98fbd..f09d7baa 100644 --- a/aas_core_meta/__init__.py +++ b/aas_core_meta/__init__.py @@ -1,6 +1,6 @@ """Provide meta-models for Asset Administration Shell information model.""" -__version__ = "2022.4.30a4" +__version__ = "2022.4.30a5" __author__ = "Nico Braunisch, Marko Ristin, Marcin Sadurski" __license__ = "License :: OSI Approved :: MIT License" __status__ = "Alpha" diff --git a/setup.py b/setup.py index 4e0dd6cb..098534fa 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="aas-core-meta", - version="2022.4.30a4", + version="2022.4.30a5", description="Provide meta-models for Asset Administration Shell information model.", long_description=long_description, url="https://github.com/aas-core-works/aas-core-meta",