Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
bump: version 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero committed Feb 9, 2023
1 parent f580952 commit 9ad6101
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cz_conventional_commits"
bump_message = "bump: version $current_version → $new_version"
version_format = "$version"
version = "0.3.0"
version = "0.3.1"
version_files = [
".cz.toml:version",
"staged_primitives/__init__.py:__version__",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.1 (2023-02-09)

### Fix

- **reckoning**: compute real valued std_error instead of complex

## 0.3.0 (2023-02-08)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion CITATION.bib
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ @misc{staged_primitives
title = {Staged Primitives},
year = {2023},
publisher = {Zenodo},
version = {0.3.0},
version = {0.3.1},
doi = {10.5281/zenodo.7613387},
url = {https://doi.org/10.5281/zenodo.7613387},
}
2 changes: 1 addition & 1 deletion staged_primitives/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""Backend based primitives defining a staged computational pipeline."""

__copyright__ = "(C) Copyright IBM 2023"
__version__ = "0.3.0"
__version__ = "0.3.1"


__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


def test_version():
assert __version__ == "0.3.0"
assert __version__ == "0.3.1"


################################################################################
Expand Down

0 comments on commit 9ad6101

Please sign in to comment.