diff --git a/CHANGES.md b/CHANGES.md index c77768c..fec0a60 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,20 @@ # Changelog for model_metadata -## 0.7.1 (unreleased) +## 0.8.3 (unreleased) + - Nothing changed yet. + +## 0.8.2 (2024-10-15) + +- Fixed an error that was caused when the type of a metadata value's + default value did not match it's specified type. +- Added support for Python 3.13. +- Updated the continuous integration to build source distributions and + then test those distributions. The *release* and *prerelease* workflows + are now part of the *test* workflow. + ## 0.7.0 (2020-09-22) - Added constructor for ModelMetadata that accepts an object rather than diff --git a/src/model_metadata/_version.py b/src/model_metadata/_version.py index 4dd1fcf..81b1319 100644 --- a/src/model_metadata/_version.py +++ b/src/model_metadata/_version.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.8.2.dev0" +__version__ = "0.8.3.dev0"