Skip to content

Commit 49531a4

Browse files
authoredSep 24, 2024··
Start v1.15.dev (#838)
1 parent 1fd7827 commit 49531a4

File tree

9 files changed

+13
-17
lines changed

9 files changed

+13
-17
lines changed
 

‎doc/developer_documentation.md

+5-9
Original file line numberDiff line numberDiff line change
@@ -68,22 +68,18 @@ A *spandrel* is an implementation detail that has observable effects, but which
6868

6969
- Create an off-main-branch release commit
7070
- [ ] `git checkout main -b SOMEBRANCHNAME`
71-
- [ ] Update version to `version = 'X.Y.0'` in `setup.py` (at repo root)
72-
- [ ] Update version to `version = 'X.Y.0'` in `glue/cirq/setup.py`
73-
- [ ] Update version to `version = 'X.Y.0'` in `glue/sinter/setup.py`
74-
- [ ] Update version to `version = 'X.Y.0'` in `glue/stimzx/setup.py`
71+
- [ ] Global search replace `__version__ = 'X.Y.dev0'` with `__version__ = 'X.Y.0'`
7572
- [ ] `git commit -a -m "Bump to vX.Y.0"`
7673
- [ ] `git tag vX.Y.0`
7774
- [ ] Push tag to github
7875
- [ ] Check github `Actions` tab and confirm ci is running on the tag
7976
- [ ] Wait for ci to finish validating and producing artifacts for the tag
8077
- [ ] Get `stim`, `stimcirq`, and `sinter` wheels/sdists [from cibuildwheels](#pypackage.stim.cibuildwheels) of this tag
8178
- Bump to next dev version on main branch
82-
- [ ] Update version to `version = 'X.(Y+1).dev0'` in `setup.py` (at repo root)
83-
- [ ] Update version to `version = 'X.(Y+1).dev0'` in `glue/cirq/setup.py`
84-
- [ ] Update version to `version = 'X.(Y+1).dev0'` in `glue/sinter/setup.py`
85-
- [ ] Update version to `version = 'X.(Y+1).dev0'` in `glue/stimzx/setup.py`
86-
- [ ] Update `INTENTIONAL_VERSION_SEED_INCOMPATIBILITY` in `src/stim/circuit/circuit.h`
79+
- [ ] `git checkout main -b SOMEBRANCHNAME`
80+
- [ ] Global search replace `__version__ = 'X.Y.dev0'` with `__version__ = 'X.(Y+1).dev0'`
81+
- [ ] Increment `INTENTIONAL_VERSION_SEED_INCOMPATIBILITY` in `src/stim/circuit/circuit.h`
82+
- [ ] `git commit -a -m "Start vX.(Y+1).dev"`
8783
- [ ] Push to github as a branch and merge into main using a pull request
8884
- Write release notes on github
8985
- [ ] In title, use two-word theming of most important changes

‎glue/cirq/setup.py

+1-1
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.14.dev0'
20+
__version__ = '1.15.dev0'
2121

2222
setup(
2323
name='stimcirq',

‎glue/cirq/stimcirq/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.14.dev0'
1+
__version__ = '1.15.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

+1-1
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.14.dev0'
22+
__version__ = '1.15.dev0'
2323

2424
setup(
2525
name='sinter',

‎glue/sample/src/sinter/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.14.dev0'
1+
__version__ = '1.15.dev0'
22

33
from sinter._collection import (
44
collect,

‎glue/zx/setup.py

+1-1
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.14.dev0'
20+
__version__ = '1.15.dev0'
2121

2222
setup(
2323
name='stimzx',

‎glue/zx/stimzx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.14.dev0'
1+
__version__ = '1.15.dev0'
22
from ._external_stabilizer import (
33
ExternalStabilizer,
44
)

‎setup.py

+1-1
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.14.dev0'
28+
__version__ = '1.15.dev0'
2929

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

‎src/stim/util_bot/probability_util.h

+1-1
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 = 0xDEADBEEF123BULL;
29+
constexpr uint64_t INTENTIONAL_VERSION_SEED_INCOMPATIBILITY = 0xDEADBEEF124BULL;
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)
Please sign in to comment.