Skip to content

Commit

Permalink
Start v1.14.dev (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc authored Mar 18, 2024
1 parent 5f35408 commit ebf7320
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 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.13.dev0'
__version__ = '1.14.dev0'

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.13.dev0'
__version__ = '1.14.dev0'
from ._cirq_to_stim import cirq_circuit_to_stim_circuit
from ._cx_swap_gate import CXSwapGate
from ._cz_swap_gate import CZSwapGate
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.13.dev0'
__version__ = '1.14.dev0'

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.13.dev0'
__version__ = '1.14.dev0'

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.13.dev0'
__version__ = '1.14.dev0'

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.13.dev0'
__version__ = '1.14.dev0'
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.13.dev0'
__version__ = '1.14.dev0'

if sys.platform.startswith('win'):
common_compile_args = [
Expand Down
2 changes: 1 addition & 1 deletion src/stim/probability_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
namespace stim {

// Change this number from time to time to ensure people don't rely on seeds across versions.
constexpr uint64_t INTENTIONAL_VERSION_SEED_INCOMPATIBILITY = 0xDEADBEEF123AULL;
constexpr uint64_t INTENTIONAL_VERSION_SEED_INCOMPATIBILITY = 0xDEADBEEF123BULL;

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

0 comments on commit ebf7320

Please sign in to comment.