From ad9731f580fdad2de23b23475675d8f009f6da77 Mon Sep 17 00:00:00 2001 From: Marko Ristin Date: Fri, 2 Feb 2024 16:52:03 +0100 Subject: [PATCH] Release 1.0.0 This is the first stable release. The release candidates stood the test of time, so we are now confident to publish a stable version. --- aas_core3/__init__.py | 4 ++-- docs/source/changelog.rst | 6 ++++++ setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/aas_core3/__init__.py b/aas_core3/__init__.py index 66d8d653..5eaceb0d 100644 --- a/aas_core3/__init__.py +++ b/aas_core3/__init__.py @@ -1,8 +1,8 @@ """Manipulate, verify and de/serialize Asset Administration Shells.""" # Synchronize with __init__.py and changelog.rst! -__version__ = "1.0.0rc3" +__version__ = "1.0.0" __author__ = "Marko Ristin" -__copyright__ = "2023 Contributors to aas-core3.0-python" +__copyright__ = "2024 Contributors to aas-core3.0-python" __license__ = "License :: OSI Approved :: MIT License" __status__ = "Production/Stable" diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 0297451e..a07f63b0 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,12 @@ Change Log ********** +1.0.0 (2024-02-02) +================== +This is the first stable release. The release candidates stood +the test of time, so we are now confident to publish a stable +version. + 1.0.0rc3 (2023-09-08) ===================== * Update to aas-core-meta, codegen, testgen 4d7e59e, 18986a0, and diff --git a/setup.py b/setup.py index 4cc39610..32950250 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.0rc3", + version="1.0.0", description="Manipulate, verify and de/serialize Asset Administration Shells.", long_description=long_description, url="https://github.com/aas-core-works/aas-core3.0-python",