Skip to content

Commit bcad72c

Browse files
committed
Bump to v1.11.0
1 parent 04d119b commit bcad72c

File tree

7 files changed

+6670
-1058
lines changed

7 files changed

+6670
-1058
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
- [How do I use Stim?](#how-use-stim)
99
- [How does Stim work?](#how-stim-work)
1010
- [How do I cite Stim?](#how-cite-stim)
11+
- [subproject: Sinter decoding sampler](glue/sample)
12+
- [subproject: Crumble interactive editor](glue/crumble)
1113

1214
# <a name="what-is-stim"></a>What is Stim?
1315

doc/getting_started.ipynb

+6,663-1,053
Large diffs are not rendered by default.

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.11.dev0'
20+
version = '1.11.0'
2121

2222
setup(
2323
name='stimcirq',

glue/crumble/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Crumble is not polished.**
2424

2525
Crumble can be accessed by [building it](#building-crumble).
2626

27-
Crumble can also be accessed by installing stim `1.11.dev1674763846` or later (e.g. by `pip install stim~=1.11.dev1674763846`), printing the output of `stim.Circuit().diagram("interactive")` to an HTML file, and then opening the HTML file in a browser.
27+
Crumble can also be accessed by installing stim `1.11` or later (e.g. by `pip install stim~=1.11.dev1674763846`), printing the output of `stim.Circuit().diagram("interactive")` to an HTML file, and then opening the HTML file in a browser.
2828

2929
<a name="using-crumble"></a>
3030
# Using Crumble

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 = [line.split()[0] for line in f.read().splitlines()]
2121

22-
version = '1.11.dev0'
22+
version = '1.11.0'
2323

2424
setup(
2525
name='sinter',

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.11.dev0'
20+
version = '1.11.0'
2121

2222
setup(
2323
name='stimzx',

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.11.dev0'
28+
version = '1.11.0'
2929

3030
if sys.platform.startswith('win'):
3131
common_compile_args = [

0 commit comments

Comments
 (0)