diff --git a/.cz.toml b/.cz.toml index 65592bb..6711700 100644 --- a/.cz.toml +++ b/.cz.toml @@ -2,7 +2,7 @@ name = "cz_conventional_commits" bump_message = "bump: version $current_version → $new_version" version_format = "$version" -version = "0.0.0" +version = "0.1.0" version_files = [ ".cz.toml:version", "staged_primitives/__init__.py:__version__", diff --git a/CHANGELOG.md b/CHANGELOG.md index c0ef4e6..a1305dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.1.0 (2023-02-06) + +### Feat + +- **utils**: add time module and isotimestamp function +- **binary**: add binary_digit util + +### Refactor + +- **operators**: rename operators module to paulis +- **results**: rename results module to counts +- **binary**: change return value in parity_bit to bool + ## 0.0.0 (2023-02-02) ### Feat diff --git a/staged_primitives/__init__.py b/staged_primitives/__init__.py index 05f68dd..92fea83 100644 --- a/staged_primitives/__init__.py +++ b/staged_primitives/__init__.py @@ -13,7 +13,7 @@ """Backend based primitives defining a staged computational pipeline.""" __copyright__ = "(C) Copyright IBM 2023" -__version__ = "0.0.0" +__version__ = "0.1.0" __all__ = [ diff --git a/test/__init__.py b/test/__init__.py index c313d83..a0ac21b 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -14,7 +14,7 @@ def test_version(): - assert __version__ == "0.0.0" + assert __version__ == "0.1.0" ################################################################################