From 355b58522c0c2f4791d3325702e92edca5505944 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Wed, 8 Mar 2023 14:19:17 -0800 Subject: [PATCH] Bump version from 0.1.0 to 0.2.0 --- .github/workflows/github-pages.yml | 2 +- CHANGELOG.md | 5 ++++- docs/conf.py | 2 +- paramdb/__init__.py | 3 --- pyproject.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index e0b1eb8..76e7fcb 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.3.2" - PARAMDB_VERSION: "0.1.0" + PARAMDB_VERSION: "0.2.0" jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index 55b8cc0..187d155 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.2.0] (Mar 8 2023) + ### Added - Ability to specify commit ID in `ParamDB.load()` @@ -29,5 +31,6 @@ 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.1.0...main +[unreleased]: https://github.com/PainterQubits/paramdb/compare/v0.2.0...main +[0.2.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.2.0 [0.1.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.1.0 diff --git a/docs/conf.py b/docs/conf.py index 5b167d9..18e55a8 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.1.0" +release = "0.2.0" # General configuration extensions = [ diff --git a/paramdb/__init__.py b/paramdb/__init__.py index dbbf342..801cc41 100644 --- a/paramdb/__init__.py +++ b/paramdb/__init__.py @@ -8,10 +8,7 @@ from paramdb._param_data._type_mixins import ParentType, RootType from paramdb._database import ParamDB, CommitEntry -__version__ = "0.1.0" - __all__ = [ - "__version__", "ParamData", "Param", "Struct", diff --git a/pyproject.toml b/pyproject.toml index d4be759..1dd9278 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "paramdb" -version = "0.1.0" +version = "0.2.0" description = "Python library for storing and retrieving experiment parameters." authors = ["Alex Hadley "] license = "BSD-3-Clause"