From 4c35b97d78ff56e9189f9619c7a0269c0caf90e4 Mon Sep 17 00:00:00 2001 From: Marko Ristin Date: Wed, 28 Jun 2023 10:10:18 +0200 Subject: [PATCH] Release 1.0.0rc2 (#8) * Update to aas-core-meta, codegen, testgen 44756fb, 607f65c, bf3720d7 (#7) * This is an important patch propagating in particular the following fixes which affected the constraints and their documentation: * Pull requests in aas-core-meta 271, 272 and 273 which affect the nullability checks in constraints, * Pull request in aas-core-meta 275 which affects the documentation of many constraints. --- aas_core3/__init__.py | 2 +- docs/source/changelog.rst | 13 ++++++++++++- setup.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/aas_core3/__init__.py b/aas_core3/__init__.py index ca11efb6..00bd67ce 100644 --- a/aas_core3/__init__.py +++ b/aas_core3/__init__.py @@ -1,7 +1,7 @@ """Manipulate, verify and de/serialize Asset Administration Shells.""" # Synchronize with __init__.py and changelog.rst! -__version__ = "1.0.0rc1" +__version__ = "1.0.0rc2" __author__ = "Marko Ristin" __copyright__ = "2023 Contributors to aas-core3.0-python" __license__ = "License :: OSI Approved :: MIT License" diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index f4ac472f..5d4b7475 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,17 @@ Change Log ********** +1.0.0rc2 (2023-06-28) +===================== +* Update to aas-core-meta, codegen, testgen 44756fb, 607f65c, + bf3720d7 (#7) + * This is an important patch propagating in particular the following fixes + which affected the constraints and their documentation: + * Pull requests in aas-core-meta 271, 272 and 273 which affect the + nullability checks in constraints, + * Pull request in aas-core-meta 275 which affects the documentation + of many constraints. + 1.0.0rc1 (2023-03-03) -======================= +===================== * Initial version diff --git a/setup.py b/setup.py index 97bb0024..a47e874b 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name="aas-core3.0", # Synchronize with __init__.py and changelog.rst! - version="1.0.0rc1", + version="1.0.0rc2", description="Manipulate, verify and de/serialize Asset Administration Shells.", long_description=long_description, url="https://github.com/aas-core-works/aas-core3.0-python",