diff --git a/CHANGELOG.md b/CHANGELOG.md index b1469f4..fb6e980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ ### Changelog +### 1.0.3 + +* Ensure that layers are created in XML +* Fix header - providerVersion +* Handle empty names +* Make Symdefs to follow XML + +### 1.0.2 + +* Change export XML declaration +* Add missing Source XML export to MappingDefinition +* Remove unused export attributes from Data() + +### 1.0.1 + +* Adjust default class attributes to prevent mutable shared data + ### 1.0.0 * Breaking changes, but updating is not complex. There is now an additional diff --git a/pymvr/__init__.py b/pymvr/__init__.py index fe622d6..86291d3 100644 --- a/pymvr/__init__.py +++ b/pymvr/__init__.py @@ -31,7 +31,7 @@ from .value import Matrix, Color # type: ignore from enum import Enum -__version__ = "1.0.3.dev9" +__version__ = "1.0.3" def _find_root(pkg: "zipfile.ZipFile") -> "ElementTree.Element":