Skip to content

Commit 01f1aab

Browse files
authored
Start v1.17.dev (#1070)
1 parent e34cb63 commit 01f1aab

11 files changed

Lines changed: 16 additions & 11 deletions

File tree

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.16.dev0'
20+
__version__ = '1.17.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.16.dev0'
1+
__version__ = '1.17.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.16.dev0'
22+
__version__ = '1.17.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.16.dev0'
1+
__version__ = '1.17.dev0'
22

33
from sinter._collection import (
44
collect,

glue/stimflow/doc/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# stimflow v0.1.0 API Reference
1+
# stimflow (Development Version) API Reference
22

33
## Index
44
- [`stimflow.Chunk`](#stimflow.Chunk)

glue/stimflow/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.16.dev0'
22+
__version__ = '1.17.dev0'
2323

2424
setup(
2525
name='stimflow',

glue/stimflow/src/stimflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.0"
1+
__version__ = '1.17.dev0'
22

33
from stimflow._chunk import (
44
Chunk,

glue/stimflow/tools/gen_api_reference.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import dataclasses
44
import inspect
5+
import sys
56
import types
67
from collections.abc import Iterator
78
from typing import Any, cast
@@ -318,7 +319,11 @@ def main():
318319
if all("[DEPRECATED]" not in line for line in obj.lines)
319320
]
320321

321-
print(f"# stimflow v{stimflow.__version__} API Reference")
322+
if "dev" in stimflow.__version__ or stimflow.__version__ == "VERSION_INFO" or "-dev" in sys.argv:
323+
version = "(Development Version)"
324+
else:
325+
version = "v" + stimflow.__version__
326+
print(f"# stimflow {version} API Reference")
322327
print()
323328
print("## Index")
324329
for obj in objects:

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.16.dev0'
20+
__version__ = '1.17.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.16.dev0'
1+
__version__ = '1.17.dev0'
22
from ._external_stabilizer import (
33
ExternalStabilizer,
44
)

0 commit comments

Comments
 (0)