Skip to content

Commit b13af2f

Browse files
committed
bump: version 0.2.0b0 → 0.2.0
1 parent 79e9872 commit b13af2f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.2.0b0"
14+
version = "0.2.0"
1515
version_files = [
1616
"qrand/__init__.py:__version__",
1717
"tests/test_qrand.py:__version__",
@@ -40,7 +40,7 @@ line_length = 79
4040

4141
[tool.poetry]
4242
name = "qrand"
43-
version = "0.2.0b0"
43+
version = "0.2.0"
4444
description = "A quantum random number generator for arbitrary probability distributions"
4545
readme = "README.md"
4646
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.2.0b0"
26+
__version__ = "0.2.0"
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.2.0b0"
33+
assert __version__ == "0.2.0"
3434

3535

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

0 commit comments

Comments
 (0)