From 056f480019b60563452a966a95561acf0ce2b820 Mon Sep 17 00:00:00 2001 From: Marko Ristin Date: Sat, 9 Apr 2022 22:39:38 +0200 Subject: [PATCH] Release 0.0.8 (#150) JSON ---- * Sort definitions in JSON schema (#148) XSD --- * Sort schema elements by tag and name in XSD (#149) --- .idea/dictionaries/rist.xml | 3 +++ CHANGELOG.rst | 10 ++++++++++ aas_core_codegen/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.idea/dictionaries/rist.xml b/.idea/dictionaries/rist.xml index 211f121ad..38e150cd6 100644 --- a/.idea/dictionaries/rist.xml +++ b/.idea/dictionaries/rist.xml @@ -5,6 +5,7 @@ anno argparse atok + braunisch bytearray cardinalities classdef @@ -50,6 +51,7 @@ ization jsonization jsonschema + lehmann lengthable lineno linq @@ -76,6 +78,7 @@ recursing referables reformattable + ristin rstripped selfmanagedentity shacl diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e5cc98ed9..a48b40827 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,16 @@ Please keep this file at 72 line width so that we can copy-paste the release logs directly into commit messages. +0.0.8 (2022-04-09) +================== +JSON +---- +* Sort definitions in JSON schema (#148) + +XSD +--- +* Sort schema elements by tag and name in XSD (#149) + 0.0.7 (2022-04-09) ================== * Render the descriptions with smoke at intermediate (#142) diff --git a/aas_core_codegen/__init__.py b/aas_core_codegen/__init__.py index 197a6ee0c..e4699317d 100644 --- a/aas_core_codegen/__init__.py +++ b/aas_core_codegen/__init__.py @@ -1,6 +1,6 @@ """Generate different implementations and schemas based on an AAS meta-model.""" -__version__ = "0.0.7" +__version__ = "0.0.8" __author__ = "Marko Ristin, Nico Braunisch, Robert Lehmann" __license__ = "License :: OSI Approved :: MIT License" __status__ = "Production/Stable" diff --git a/setup.py b/setup.py index 008497edb..93d3e8864 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="aas-core-codegen", - version="0.0.7", + version="0.0.8", description="Generate different implementations and schemas based on an AAS meta-model.", long_description=long_description, url="https://github.com/aas-core-works/aas-core-codegen",