Skip to content

Commit

Permalink
Bump to v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Aug 22, 2023
1 parent edee3be commit 1179fc3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion glue/cirq/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
with open('README.md', encoding='UTF-8') as f:
long_description = f.read()

__version__ = '1.12.dev0'
__version__ = '1.12.0'

setup(
name='stimcirq',
Expand Down
2 changes: 1 addition & 1 deletion glue/cirq/stimcirq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.12.dev0'
__version__ = '1.12.0'
from ._cirq_to_stim import cirq_circuit_to_stim_circuit
from ._cx_swap_gate import CXSwapGate
from ._det_annotation import DetAnnotation
Expand Down
2 changes: 1 addition & 1 deletion glue/sample/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
with open('requirements.txt', encoding='UTF-8') as f:
requirements = f.read().splitlines()

__version__ = '1.12.dev0'
__version__ = '1.12.0'

setup(
name='sinter',
Expand Down
2 changes: 1 addition & 1 deletion glue/sample/src/sinter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.12.dev0'
__version__ = '1.12.0'

from sinter._anon_task_stats import (
AnonTaskStats,
Expand Down
2 changes: 1 addition & 1 deletion glue/zx/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
with open('README.md', encoding='UTF-8') as f:
long_description = f.read()

__version__ = '1.12.dev0'
__version__ = '1.12.0'

setup(
name='stimzx',
Expand Down
2 changes: 1 addition & 1 deletion glue/zx/stimzx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.12.dev0'
__version__ = '1.12.0'
from ._external_stabilizer import (
ExternalStabilizer,
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
HEADER_FILES = glob.glob("src/**/*.h", recursive=True) + glob.glob("src/**/*.inl", recursive=True)
RELEVANT_SOURCE_FILES = sorted(set(ALL_SOURCE_FILES) - set(TEST_FILES + PERF_FILES + MAIN_FILES + MUX_SOURCE_FILES))

__version__ = '1.12.dev0'
__version__ = '1.12.0'

if sys.platform.startswith('win'):
common_compile_args = [
Expand Down

0 comments on commit 1179fc3

Please sign in to comment.