diff --git a/CHANGELOG.md b/CHANGELOG.md index b62a607..6c06ee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.10.1] (Nov 6 2023) + +### Added + +- Support for Python 3.12 + ## [0.10.0] (Aug 30 2023) ### Added @@ -124,7 +130,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Database class `ParamDB` to store parameters in a SQLite file - Ability to retrieve the commit history as `CommitEntry` objects -[unreleased]: https://github.com/PainterQubits/paramdb/compare/v0.10.0...develop +[unreleased]: https://github.com/PainterQubits/paramdb/compare/v0.10.1...develop +[0.10.1]: https://github.com/PainterQubits/paramdb/releases/tag/v0.10.1 [0.10.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.10.0 [0.9.1]: https://github.com/PainterQubits/paramdb/releases/tag/v0.9.1 [0.9.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.9.0 diff --git a/CITATION.cff b/CITATION.cff index eaa4b9e..1bc2b0c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,6 +4,6 @@ authors: - family-names: "Hadley" given-names: "Alex" title: "ParamDB" -version: 0.10.0 -date-released: 2023-08-30 +version: 0.10.1 +date-released: 2023-11-06 url: "https://github.com/PainterQubits/paramdb" diff --git a/docs/conf.py b/docs/conf.py index 1658e04..d431af9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ project = "ParamDB" copyright = "2023, California Institute of Technology" author = "Alex Hadley" -release = "0.10.0" +release = "0.10.1" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 3d9bff3..25a24a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,9 +4,9 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "paramdb" -version = "0.10.0" +version = "0.10.1" description = "Python package for storing and retrieving experiment parameters." -authors = ["Alex Hadley "] +authors = ["Alex Hadley "] license = "BSD-3-Clause" readme = "README.md" repository = "https://github.com/PainterQubits/paramdb"