From 831a420e4d7849e1d9d016a0250ca8f7184e2e38 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Fri, 21 Jun 2024 19:05:15 -0700 Subject: [PATCH] Bump version from 0.14.0 to 0.15.0 --- CHANGELOG.md | 5 ++++- CITATION.cff | 4 ++-- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4b7c1d..7a50825 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ project adheres to clauses 1–8 of [Semantic Versioning](https://semver.org/spe ## [Unreleased] +## [0.15.0] (Jun 21 2024) + ### Added - Added `ParamDB.__repr__()` for better debugging. @@ -216,7 +218,8 @@ project adheres to clauses 1–8 of [Semantic Versioning](https://semver.org/spe - 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.14.0...main +[unreleased]: https://github.com/PainterQubits/paramdb/compare/v0.15.0...main +[0.15.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.15.0 [0.14.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.14.0 [0.13.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.13.0 [0.12.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.12.0 diff --git a/CITATION.cff b/CITATION.cff index 22226ff..242249e 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,6 +4,6 @@ authors: - family-names: "Hadley" given-names: "Alex" title: "ParamDB" -version: 0.14.0 -date-released: 2024-06-18 +version: 0.15.0 +date-released: 2024-06-21 url: "https://github.com/PainterQubits/paramdb" diff --git a/docs/conf.py b/docs/conf.py index 20404cc..a906075 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ project = "ParamDB" copyright = "2023–2024, California Institute of Technology" author = "Alex Hadley" -release = "0.14.0" +release = "0.15.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 3080505..af583a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "paramdb" -version = "0.14.0" +version = "0.15.0" description = "Python package for storing and retrieving experiment parameters." authors = ["Alex Hadley "] license = "BSD-3-Clause"