diff --git a/CHANGELOG.md b/CHANGELOG.md index 3562e6f..74f13c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.8.0] (June 9 2023) + +### Changed + +- Documentation website moved to Read the Docs. + +### Added + +- Badges for latest PyPI version, license, CI status, Codecov, and docs website build. + ## [0.7.0] (May 19 2023) ### Changed @@ -89,7 +99,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.7.0...main +[unreleased]: https://github.com/PainterQubits/paramdb/compare/v0.8.0...develop +[0.8.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.8.0 [0.7.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.7.0 [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 diff --git a/CITATION.cff b/CITATION.cff index 514f2ca..2946409 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,6 +4,6 @@ authors: - family-names: "Hadley" given-names: "Alex" title: "ParamDB" -version: 0.7.0 -date-released: 2023-05-19 +version: 0.8.0 +date-released: 2023-06-09 url: "https://github.com/PainterQubits/paramdb" diff --git a/README.md b/README.md index c672889..e0539e1 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![PyPI Latest Release](https://img.shields.io/pypi/v/paramdb)](https://pypi.org/project/paramdb/) [![License](https://img.shields.io/pypi/l/paramdb)](https://github.com/PainterQubits/paramdb/blob/main/LICENSE) [![CI](https://github.com/PainterQubits/paramdb/actions/workflows/ci.yml/badge.svg)](https://github.com/PainterQubits/paramdb/actions/workflows/ci.yml) +[![Codecov](https://codecov.io/github/PainterQubits/paramdb/branch/main/graph/badge.svg?token=PQEJWLBTBK)](https://codecov.io/github/PainterQubits/paramdb) [![Documentation Status](https://readthedocs.org/projects/paramdb/badge/?version=stable)](https://paramdb.readthedocs.io/en/stable/?badge=stable) diff --git a/docs/conf.py b/docs/conf.py index 1af7155..f648d6e 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.7.0" +release = "0.8.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index c1d2101..cc46550 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "paramdb" -version = "0.7.0" +version = "0.8.0" description = "Python package for storing and retrieving experiment parameters." authors = ["Alex Hadley "] license = "BSD-3-Clause"