File tree Expand file tree Collapse file tree 5 files changed +18
-5
lines changed
Expand file tree Collapse file tree 5 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 1+ ## 0.3.0a5 (2021-05-20)
2+
3+ ### Refactor
4+
5+ - ** platforms** : remove unnecessary type ignore tags
6+ - ** QuantumBitGenerator** : random bitstring and uint signature
7+ - ** HadamardProtocol** : update private API signatures
8+ - restrict max_bits attribute to protocols
9+
10+ ### Feat
11+
12+ - ** compute_bounded_factorization** : add argument validation
13+
114## 0.3.0a4 (2021-05-19)
215
316### Refactor
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ @software{pedro_rivero_qrand
33 title = { QRAND: A multiprotocol and multiplatform quantum random number generation framework} ,
44 year = 2020 ,
55 publisher = { Zenodo} ,
6- version = { 0.3.0a4 } ,
6+ version = { 0.3.0a5 } ,
77 doi = { 10.5281/zenodo.4755731} ,
88 url = { https://doi.org/10.5281/zenodo.4755731}
99}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ exclude = '''
1111name = " cz_conventional_commits"
1212bump_message = " bump: version $current_version → $new_version"
1313version_format = " $version"
14- version = " 0.3.0a4 "
14+ version = " 0.3.0a5 "
1515version_files = [
1616 " qrand/__init__.py:__version__" ,
1717 " tests/test_qrand.py:__version__" ,
@@ -41,7 +41,7 @@ line_length = 79
4141
4242[tool .poetry ]
4343name = " qrand"
44- version = " 0.3.0a4 "
44+ version = " 0.3.0a5 "
4545description = " A multiprotocol and multiplatform quantum random number generation framework"
4646readme = " README.md"
4747homepage = " https://github.com/pedrorrivero/qrand"
Original file line number Diff line number Diff line change 2323__author__ = "Pedro Rivero"
2424__copyright__ = "Copyright (c) 2021 Pedro Rivero"
2525__license__ = "Apache-2.0"
26- __version__ = "0.3.0a4 "
26+ __version__ = "0.3.0a5 "
2727
2828from ._qiskit_bit_generator import QiskitBitGenerator
2929from .qrng import Qrng
Original file line number Diff line number Diff line change 3030## VERSION
3131###############################################################################
3232def test_version ():
33- assert __version__ == "0.3.0a4 "
33+ assert __version__ == "0.3.0a5 "
3434
3535
3636###############################################################################
You can’t perform that action at this time.
0 commit comments