Skip to content

Commit 9bcca4d

Browse files
Bump version to 0.13.1.
1 parent 7d74e3c commit 9bcca4d

File tree

9 files changed

+13
-7
lines changed

9 files changed

+13
-7
lines changed

cirq-aqt/cirq_aqt/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
"""Define version number here, read it from setup.py automatically"""
1616

17-
__version__ = "0.13.0"
17+
__version__ = "0.13.1"

cirq-core/cirq/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
'of cirq (e.g. "python -m pip install cirq==0.5.*")'
3030
)
3131

32-
__version__ = "0.13.0"
32+
__version__ = "0.13.1"

cirq-google/cirq_google/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
'of cirq (e.g. "python -m pip install cirq==0.5.*")'
3030
)
3131

32-
__version__ = "0.13.0"
32+
__version__ = "0.13.1"

cirq-ionq/cirq_ionq/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
"""Define version number here, read it from setup.py automatically"""
1616

17-
__version__ = "0.13.0"
17+
__version__ = "0.13.1"

cirq-pasqal/cirq_pasqal/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
"""Define version number here, read it from setup.py automatically"""
1616

17-
__version__ = "0.13.0"
17+
__version__ = "0.13.1"

cirq-rigetti/cirq_rigetti/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
"""Define version number here, read it from setup.py automatically"""
1616

17-
__version__ = "0.13.0"
17+
__version__ = "0.13.1"

cirq-web/cirq_web/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.13.0"
15+
__version__ = "0.13.1"

profile

7.23 MB
Binary file not shown.

speed.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pstats
2+
p = pstats.Stats('profile')
3+
p.strip_dirs()
4+
p.sort_stats('tottime')
5+
p.print_stats(50)
6+

0 commit comments

Comments
 (0)