Skip to content

Commit

Permalink
Bump version from 0.2.0 to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Hadley committed Mar 14, 2023
1 parent 9c81d2a commit b91ac5c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: workflow_dispatch
env:
PYTHON_VERSION: "3.10"
POETRY_VERSION: "1.3.2"
PARAMDB_VERSION: "0.2.0"
PARAMDB_VERSION: "0.3.0"

jobs:
build:
Expand Down
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.0] (Mar 14 2023)

### Added

- Ability to specify start and end indices in `ParamDB.commit_history()`
- Support for scalar [`astropy.units.Quantity`] objects
- Support for scalar `astropy.units.Quantity` objects
- Parameter dataclass bases (`Param` and `Struct`) automatically convert subclasses into
dataclasses `kw_only` as True by default

Expand Down Expand Up @@ -42,7 +44,7 @@ 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.2.0...main
[unreleased]: https://github.com/PainterQubits/paramdb/compare/v0.3.0...main
[0.3.0]: https://github.com/PainterQubits/paramdb/releases/tag/v0.3.0
[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
[`astropy.units.quantity`]: https://docs.astropy.org/en/stable/api/astropy.units.Quantity.html#astropy.units.Quantity
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
project = "ParamDB"
copyright = "2023, California Institute of Technology"
author = "Alex Hadley"
release = "0.2.0"
release = "0.3.0"

# General configuration
extensions = [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "paramdb"
version = "0.2.0"
version = "0.3.0"
description = "Python library for storing and retrieving experiment parameters."
authors = ["Alex Hadley <[email protected]>"]
license = "BSD-3-Clause"
Expand Down

0 comments on commit b91ac5c

Please sign in to comment.