From 43524b52448d3252ec1f96c8ff5511818b45277b Mon Sep 17 00:00:00 2001 From: Andrew Davison Date: Mon, 16 Feb 2026 11:13:25 +0100 Subject: [PATCH] update CHANGELOG, set version to 0.4.1 --- CHANGELOG.md | 6 ++++++ build.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e47d5cf..3f59076f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -80,3 +80,9 @@ For more detail see #29. - allow the user to specify which openMINDS version should be used by `Collection.load()` [#77](https://github.com/openMetadataInitiative/openMINDS_Python/pull/77) - add the option to group files into subdirectories by schema when saving [#80](https://github.com/openMetadataInitiative/openMINDS_Python/pull/80) - improvements to the `by_name()` method [#81](https://github.com/openMetadataInitiative/openMINDS_Python/pull/81) + +## Release 0.4.1 (2026-02-16) + +- fixed a TypeError in `by_name()` when a name was not found [#83](https://github.com/openMetadataInitiative/openMINDS_Python/pull/83) +- fixed a bug where properties whose value evaluated to False (e.g., zero) were not serialized if using `include_empty_properties=False` +- updates to the "latest" module diff --git a/build.py b/build.py index 6feea2ca..8a8f0897 100644 --- a/build.py +++ b/build.py @@ -120,7 +120,7 @@ env = Environment(loader=FileSystemLoader(os.path.dirname(os.path.realpath(__file__))), autoescape=select_autoescape()) context = { - "version": "0.4.1.dev.0", + "version": "0.4.1", } with open("target/pyproject.toml", "w") as fp: