Skip to content

Commit

Permalink
bump: version 0.3.0 → 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero committed Jun 6, 2021
1 parent 32433ba commit b428255
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.4.0 (2021-06-06)

### Feat

- **protocols**: add EntanglementProtocol

### Fix

- **QiskitBackend**: correct configuration_dict entry for max_qubits
- **QuantumBitGenerator**: raise error if _refill_cache fails

## 0.3.0 (2021-06-03)

### Refactor
Expand Down
2 changes: 1 addition & 1 deletion QRAND.bib
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ @software{pedro_rivero_qrand
title = {QRAND: A multiprotocol and multiplatform quantum random number generation framework},
year = 2020,
publisher = {Zenodo},
version = {0.3.0},
version = {0.4.0},
doi = {10.5281/zenodo.4755731},
url = {https://doi.org/10.5281/zenodo.4755731}
}
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exclude = '''
name = "cz_conventional_commits"
bump_message = "bump: version $current_version → $new_version"
version_format = "$version"
version = "0.3.0"
version = "0.4.0"
version_files = [
"qrand/__init__.py:__version__",
"tests/test_qrand.py:__version__",
Expand Down Expand Up @@ -41,7 +41,7 @@ line_length = 79

[tool.poetry]
name = "qrand"
version = "0.3.0"
version = "0.4.0"
description = "A multiprotocol and multiplatform quantum random number generation framework"
readme = "README.md"
homepage = "https://github.com/pedrorrivero/qrand"
Expand Down
2 changes: 1 addition & 1 deletion qrand/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__author__ = "Pedro Rivero"
__copyright__ = "Copyright (c) 2021 Pedro Rivero"
__license__ = "Apache-2.0"
__version__ = "0.3.0"
__version__ = "0.4.0"

from ._qiskit_bit_generator import QiskitBitGenerator
from .qrng import Qrng
Expand Down
2 changes: 1 addition & 1 deletion tests/test_qrand.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
## VERSION
###############################################################################
def test_version():
assert __version__ == "0.3.0"
assert __version__ == "0.4.0"


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

0 comments on commit b428255

Please sign in to comment.