Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
* Test and fix for text attached to end XML elements (#18).

  This patch fixes for the edge case where ElementTree's
  ```XMLPullParser`` attaches the text to the end element instead of
  the start element. Previously, some XML files were wrongly reported
  as incorrect.

  We do not know what causes this different behavior of the parser,
  but suspect that it has something to do with the size of the parser's
  buffer.
  • Loading branch information
mristin committed Feb 14, 2024
1 parent 8b1eddd commit 9b6d703
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aas_core3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Manipulate, verify and de/serialize Asset Administration Shells."""

# Synchronize with __init__.py and changelog.rst!
__version__ = "1.0.0"
__version__ = "1.0.1"
__author__ = "Marko Ristin"
__copyright__ = "2024 Contributors to aas-core3.0-python"
__license__ = "License :: OSI Approved :: MIT License"
Expand Down
13 changes: 13 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
Change Log
**********

1.0.1 (2024-02-14)
==================
* Test and fix for text attached to end XML elements (#18).

This patch fixes for the edge case where ElementTree's
```XMLPullParser`` attaches the text to the end element instead of
the start element. Previously, some XML files were wrongly reported
as incorrect.

We do not know what causes this different behavior of the parser,
but suspect that it has something to do with the size of the parser's
buffer.

1.0.0 (2024-02-02)
==================
This is the first stable release. The release candidates stood
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
setup(
name="aas-core3.0",
# Synchronize with __init__.py and changelog.rst!
version="1.0.0",
version="1.0.1",
description="Manipulate, verify and de/serialize Asset Administration Shells.",
long_description=long_description,
url="https://github.com/aas-core-works/aas-core3.0-python",
Expand Down

0 comments on commit 9b6d703

Please sign in to comment.