diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e47d5c..3f59076 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 6feea2c..8a8f089 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: