Skip to content

Commit 42e0b9e

Browse files
committed
Bump to v1.15.0
1 parent dccdc0d commit 42e0b9e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

glue/cirq/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
with open('README.md', encoding='UTF-8') as f:
1818
long_description = f.read()
1919

20-
__version__ = '1.15.dev0'
20+
__version__ = '1.15.0'
2121

2222
setup(
2323
name='stimcirq',

glue/cirq/stimcirq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.15.dev0'
1+
__version__ = '1.15.0'
22
from ._cirq_to_stim import cirq_circuit_to_stim_circuit
33
from ._cx_swap_gate import CXSwapGate
44
from ._cz_swap_gate import CZSwapGate

glue/sample/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
with open('requirements.txt', encoding='UTF-8') as f:
2020
requirements = f.read().splitlines()
2121

22-
__version__ = '1.15.dev0'
22+
__version__ = '1.15.0'
2323

2424
setup(
2525
name='sinter',

glue/sample/src/sinter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.15.dev0'
1+
__version__ = '1.15.0'
22

33
from sinter._collection import (
44
collect,

glue/zx/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
with open('README.md', encoding='UTF-8') as f:
1818
long_description = f.read()
1919

20-
__version__ = '1.15.dev0'
20+
__version__ = '1.15.0'
2121

2222
setup(
2323
name='stimzx',

glue/zx/stimzx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.15.dev0'
1+
__version__ = '1.15.0'
22
from ._external_stabilizer import (
33
ExternalStabilizer,
44
)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
HEADER_FILES = glob.glob("src/**/*.h", recursive=True) + glob.glob("src/**/*.inl", recursive=True)
2626
RELEVANT_SOURCE_FILES = sorted(set(ALL_SOURCE_FILES) - set(TEST_FILES + PERF_FILES + MAIN_FILES + MUX_SOURCE_FILES))
2727

28-
__version__ = '1.15.dev0'
28+
__version__ = '1.15.0'
2929

3030
if platform.system().startswith('Win'):
3131
common_compile_args = [

0 commit comments

Comments
 (0)