Skip to content

Commit 81f1d2d

Browse files
committed
bump: version 0.3.0a1 → 0.3.0a2
1 parent 544efbe commit 81f1d2d

File tree

5 files changed

+49
-5
lines changed

5 files changed

+49
-5
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
## 0.3.0a2 (2021-05-17)
2+
3+
### Feat
4+
5+
- **helpers**: add reverse_endian
6+
- **Qrng**: add get_random_uint
7+
- **Qrng**: add get_random_decimal
8+
- **Qrng**: add get_random_bytes
9+
- **Qrng**: add random OCTAL, HEX, BASE32, and BASE64
10+
11+
### Refactor
12+
13+
- **platforms**: update QiskitJob constructor
14+
- **platforms**: extract QuantumBackend from QuantumJob
15+
- **Qrng**: rename get_bit_string to get_random_bitstring
16+
- **Qrng**: order methods alphabetically
17+
- **Qrng**: order methods alphabetically
18+
- **Qrng**: clean-up base32, base64, hex and octal
19+
20+
### Fix
21+
22+
- **Qrng**: reimplement get_bit_string with deprecation warning
23+
- **Qrng**: set default num_bits in get_random_bytes
24+
- **Qrng**: replace decode for encode in b32 and b64
25+
- **Qrng**: update output types in base32 and base64
26+
- **Qrng**: update random complex precision to double
27+
28+
### Perf
29+
30+
- **Qrng**: simplify imports
31+
32+
## 0.3.0a1 (2021-05-13)
33+
34+
### Refactor
35+
36+
- **protocols**: rename stream to measurement
37+
- **protocols**: rename SimpleResult to PlainResult
38+
- **platforms**: change job output to list of measurements
39+
- rename repetitions to num_measurements
40+
41+
### Fix
42+
43+
- **QiskitJob**: update error and warning messages
44+
145
## 0.3.0a0 (2021-05-12)
246

347
### Fix

QRAND.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.0a1},
6+
version = {0.3.0a2},
77
doi = {10.5281/zenodo.4755731},
88
url = {https://doi.org/10.5281/zenodo.4755731}
99
}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude = '''
1111
name = "cz_conventional_commits"
1212
bump_message = "bump: version $current_version → $new_version"
1313
version_format = "$version"
14-
version = "0.3.0a1"
14+
version = "0.3.0a2"
1515
version_files = [
1616
"qrand/__init__.py:__version__",
1717
"tests/test_qrand.py:__version__",
@@ -41,7 +41,7 @@ line_length = 79
4141

4242
[tool.poetry]
4343
name = "qrand"
44-
version = "0.3.0a1"
44+
version = "0.3.0a2"
4545
description = "A multiprotocol and multiplatform quantum random number generation framework"
4646
readme = "README.md"
4747
homepage = "https://github.com/pedrorrivero/qrand"

qrand/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__author__ = "Pedro Rivero"
2424
__copyright__ = "Copyright (c) 2021 Pedro Rivero"
2525
__license__ = "Apache-2.0"
26-
__version__ = "0.3.0a1"
26+
__version__ = "0.3.0a2"
2727

2828
from ._qiskit_bit_generator import QiskitBitGenerator
2929
from .qrng import Qrng

tests/test_qrand.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
## VERSION
3131
###############################################################################
3232
def test_version():
33-
assert __version__ == "0.3.0a1"
33+
assert __version__ == "0.3.0a2"
3434

3535

3636
###############################################################################

0 commit comments

Comments
 (0)