Skip to content

Commit c52cdf2

Browse files
authored
Release 0.0.9 (#174)
* Verify the limitedness of type annotations (#156) * Allow for subclass checks in intermediate (#164) * Make stringify output multi-line string (#165) * Fix stacking of inferred schema constraints (#166) * Fix methods ignored in intermediate (#167) * Allow contracts for impl.-specific methods (#168) * Introduce ``specified_for`` for methods (#170) * Re-visit inheritance of methods and signatures (#171) * Add experimental support for ``any`` in invariants (#173) C# -- * Implement a practical set of visitors in C# (#151) * Allow null enums in C# stringification (#152) * Remove unused arguments in C# jsonization (#153) * Specify more implementation keys in C# jsonization (#154) * Fix documentation about classes in C# jsonization (#155) * Write xmlization for C# (#157) * Fix unspecified indention in C# (#161) * Fix indention in snippets of C# jsonization (#162) * Expect C# snippets for types in a directory (#169) RDF+SHACL --------- * Adapt RDF and SHACL to match aas-specs V3RC02 (#159)
1 parent cce53a0 commit c52cdf2

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

.idea/dictionaries/rist.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.rst

+28
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
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.9 (2022-05-24)
7+
==================
8+
* Verify the limitedness of type annotations (#156)
9+
* Allow for subclass checks in intermediate (#164)
10+
* Make stringify output multi-line string (#165)
11+
* Fix stacking of inferred schema constraints (#166)
12+
* Fix methods ignored in intermediate (#167)
13+
* Allow contracts for impl.-specific methods (#168)
14+
* Introduce ``specified_for`` for methods (#170)
15+
* Re-visit inheritance of methods and signatures (#171)
16+
* Add experimental support for ``any`` in invariants (#173)
17+
18+
C#
19+
--
20+
* Implement a practical set of visitors in C# (#151)
21+
* Allow null enums in C# stringification (#152)
22+
* Remove unused arguments in C# jsonization (#153)
23+
* Specify more implementation keys in C# jsonization (#154)
24+
* Fix documentation about classes in C# jsonization (#155)
25+
* Write xmlization for C# (#157)
26+
* Fix unspecified indention in C# (#161)
27+
* Fix indention in snippets of C# jsonization (#162)
28+
* Expect C# snippets for types in a directory (#169)
29+
30+
RDF+SHACL
31+
---------
32+
* Adapt RDF and SHACL to match aas-specs V3RC02 (#159)
33+
634
0.0.8 (2022-04-09)
735
==================
836
JSON

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.8"
3+
__version__ = "0.0.9"
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
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name="aas-core-codegen",
26-
version="0.0.8",
26+
version="0.0.9",
2727
description="Generate different implementations and schemas based on an AAS meta-model.",
2828
long_description=long_description,
2929
url="https://github.com/aas-core-works/aas-core-codegen",

0 commit comments

Comments
 (0)