From 439d2cd4ab2ccd5210448d118830c8af111c3639 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Wed, 3 May 2023 11:01:07 -0700 Subject: [PATCH] Bump version from 0.5.0 to 0.6.0 --- .github/workflows/github-pages.yml | 2 +- CHANGELOG.md | 7 +++++-- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 6856fa4..f056533 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -5,7 +5,7 @@ on: workflow_dispatch env: PYTHON_VERSION: "3.10" POETRY_VERSION: "1.4.2" - PARAMDB_VERSION: "0.5.0" + PARAMDB_VERSION: "0.6.0" jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index 694a54e..2ad81b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,9 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -## Added +## [0.6.0] (May 3 2023) + +### Added - `ParamDB.dispose()` function for cases where it is required to fully clean up the database before the program ends, such as in testing suites. @@ -79,7 +81,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.5.0...main +[unreleased]: https://github.com/PainterQubits/paramdb/compare/v0.6.0...main +[0.6.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.6.0 [0.5.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.5.0 [0.4.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.4.0 [0.3.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.3.0 diff --git a/docs/conf.py b/docs/conf.py index cdebd1f..7ee4d6f 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.5.0" +release = "0.6.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 57aabf8..5c1d5aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "paramdb" -version = "0.5.0" +version = "0.6.0" description = "Python library for storing and retrieving experiment parameters." authors = ["Alex Hadley "] license = "BSD-3-Clause"