Skip to content

Commit c6e96b7

Browse files
authored
Start v1.16.dev (#950)
1 parent dccdc0d commit c6e96b7

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
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.16.dev0'
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.16.dev0'
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.16.dev0'
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.16.dev0'
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.16.dev0'
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.16.dev0'
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.16.dev0'
2929

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

src/stim/util_bot/probability_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
namespace stim {
2727

2828
// Change this number from time to time to ensure people don't rely on seeds across versions.
29-
constexpr uint64_t INTENTIONAL_VERSION_SEED_INCOMPATIBILITY = 0xDEADBEEF124BULL;
29+
constexpr uint64_t INTENTIONAL_VERSION_SEED_INCOMPATIBILITY = 0xDEADBEEF124CULL;
3030

3131
/// Yields the indices of hits sampled from a Bernoulli distribution.
3232
/// Gets more efficient as the hit probability drops.

0 commit comments

Comments
 (0)