Skip to content

Commit 76a9c7b

Browse files
authored
Release 0.0.7 (#145)
* Render the descriptions with smoke at intermediate (#142) C# -- * Represent string constants as literals in C# (#136) * Fix formatting of multi-line invariants in C# (#137) * Break lines on invariants in C# (#139) * Wrap the invariant descriptions in C# (#140) JSON Schema ----------- * Make ``modelType``'s strings in JSON schema (#143) XSD --- * Write XSD generator (#126) * Fix interfaces in XSD (#128) * Fix XSD to use correct environment type (#130) * Undo escaping of ``\x??`` in XSD (#131)
1 parent a6813c3 commit 76a9c7b

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.rst

+23
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
Please keep this file at 72 line width so that we can copy-paste
44
the release logs directly into commit messages.
55
6+
0.0.7 (2022-04-09)
7+
==================
8+
* Render the descriptions with smoke at intermediate (#142)
9+
10+
C#
11+
--
12+
* Represent string constants as literals in C# (#136)
13+
* Fix formatting of multi-line invariants in C# (#137)
14+
* Break lines on invariants in C# (#139)
15+
* Wrap the invariant descriptions in C# (#140)
16+
17+
JSON Schema
18+
-----------
19+
* Make ``modelType``'s strings in JSON schema (#143)
20+
21+
XSD
22+
---
23+
* Write XSD generator (#126)
24+
* Fix interfaces in XSD (#128)
25+
* Fix XSD to use correct environment type (#130)
26+
* Undo escaping of ``\x??`` in XSD (#131)
27+
28+
629
0.0.6 (2022-03-28)
730
==================
831
* Script smoke-testing a meta-model (#119)

aas_core_codegen/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Generate different implementations and schemas based on an AAS meta-model."""
22

3-
__version__ = "0.0.6"
3+
__version__ = "0.0.7"
44
__author__ = "Marko Ristin, Nico Braunisch, Robert Lehmann"
55
__license__ = "License :: OSI Approved :: MIT License"
66
__status__ = "Production/Stable"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name="aas-core-codegen",
23-
version="0.0.6",
23+
version="0.0.7",
2424
description="Generate different implementations and schemas based on an AAS meta-model.",
2525
long_description=long_description,
2626
url="https://github.com/aas-core-works/aas-core-codegen",

0 commit comments

Comments
 (0)