From 7feba4aee507b3eb54fb974847db0125850537ad Mon Sep 17 00:00:00 2001 From: vanous Date: Sat, 9 Aug 2025 10:18:59 +0200 Subject: [PATCH] Release v1.0.0 --- CHANGELOG.md | 7 ++++--- pymvr/__init__.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 477f976..b1469f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ ### Changelog -### 1.0.0-dev0 +### 1.0.0 -* Breaking changes. There is now an additional .scene object, plus several - other collector objects. Look at the tests/readme for details. +* Breaking changes, but updating is not complex. There is now an additional + .scene object, plus several other collector objects. Look at the tests/readme + for details. * Big refactor of structure - ensure that XML structure is followed in code * Implemented all MVR fields * Big refactor for export diff --git a/pymvr/__init__.py b/pymvr/__init__.py index 53f1574..e3a341e 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.0-dev0" +__version__ = "1.0.0" def _find_root(pkg: "zipfile.ZipFile") -> "ElementTree.Element":