Skip to content

Commit 2b89e63

Browse files
authored
Release 0.0.13 (#194)
* Adapt and re-record for aas-core-meta 2022.6.19 (#192) * Infer non-nullness in the intermediate (#186) * Fix duplicate inheritance of pattern constraints (#185) * Exclude external classes stringify assertions (#181) C# -- * Make C# classes with children implement interfaces (#190) * Allow classes without constructor arguments in C# (#189) * Fix C# generation for CodeInspect and testgen (#187) * Fix UTF-32 regexes for C# UTF-16-only engine (#183) * Relax constraints on C# namespace identifiers (#182)
1 parent 3c79c91 commit 2b89e63

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.rst

+19
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
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.13 (2022-06-19)
7+
===================
8+
* Adapt and re-record for aas-core-meta 2022.6.19 (#192)
9+
* Infer non-nullness in the intermediate (#186)
10+
* Fix duplicate inheritance of pattern constraints (#185)
11+
* Exclude external classes stringify assertions (#181)
12+
13+
C#
14+
--
15+
* Make C# classes with children implement interfaces (#190)
16+
* Allow classes without constructor arguments in C# (#189)
17+
* Fix C# generation for CodeInspect and testgen (#187)
18+
* Fix UTF-32 regexes for C# UTF-16-only engine (#183)
19+
* Relax constraints on C# namespace identifiers (#182)
20+
21+
XSD
22+
---
23+
* Strip anchors in XSD patterns (#188)
24+
625
0.0.12 (2022-06-03)
726
===================
827
* Fix a typo in RDF query message (#179)

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.12"
3+
__version__ = "0.0.13"
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.12",
23+
version="0.0.13",
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)