Skip to content

Commit

Permalink
Bump to v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Feb 5, 2023
1 parent 04d119b commit bcad72c
Show file tree
Hide file tree
Showing 7 changed files with 6,670 additions and 1,058 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
- [How do I use Stim?](#how-use-stim)
- [How does Stim work?](#how-stim-work)
- [How do I cite Stim?](#how-cite-stim)
- [subproject: Sinter decoding sampler](glue/sample)
- [subproject: Crumble interactive editor](glue/crumble)

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

Expand Down
7,716 changes: 6,663 additions & 1,053 deletions doc/getting_started.ipynb

Large diffs are not rendered by default.

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

setup(
name='stimcirq',
Expand Down
2 changes: 1 addition & 1 deletion glue/crumble/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Crumble is not polished.**

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

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.
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.

<a name="using-crumble"></a>
# Using Crumble
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 = [line.split()[0] for line in f.read().splitlines()]

version = '1.11.dev0'
version = '1.11.0'

setup(
name='sinter',
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.11.dev0'
version = '1.11.0'

setup(
name='stimzx',
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.11.dev0'
version = '1.11.0'

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

0 comments on commit bcad72c

Please sign in to comment.