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.0.0 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero committed Feb 6, 2023
1 parent db88a82 commit 052fb3c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 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.0.0"
version = "0.1.0"
version_files = [
".cz.toml:version",
"staged_primitives/__init__.py:__version__",
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
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.0.0"
__version__ = "0.1.0"


__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.0.0"
assert __version__ == "0.1.0"


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

0 comments on commit 052fb3c

Please sign in to comment.