Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pymvr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down