Skip to content

Commit

Permalink
Bump version to 0.13.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBroughton committed Oct 26, 2021
1 parent 7d74e3c commit 9bcca4d
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cirq-aqt/cirq_aqt/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

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

__version__ = "0.13.0"
__version__ = "0.13.1"
2 changes: 1 addition & 1 deletion cirq-core/cirq/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
'of cirq (e.g. "python -m pip install cirq==0.5.*")'
)

__version__ = "0.13.0"
__version__ = "0.13.1"
2 changes: 1 addition & 1 deletion cirq-google/cirq_google/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
'of cirq (e.g. "python -m pip install cirq==0.5.*")'
)

__version__ = "0.13.0"
__version__ = "0.13.1"
2 changes: 1 addition & 1 deletion cirq-ionq/cirq_ionq/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

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

__version__ = "0.13.0"
__version__ = "0.13.1"
2 changes: 1 addition & 1 deletion cirq-pasqal/cirq_pasqal/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

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

__version__ = "0.13.0"
__version__ = "0.13.1"
2 changes: 1 addition & 1 deletion cirq-rigetti/cirq_rigetti/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

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

__version__ = "0.13.0"
__version__ = "0.13.1"
2 changes: 1 addition & 1 deletion cirq-web/cirq_web/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.13.0"
__version__ = "0.13.1"
Binary file added profile
Binary file not shown.
6 changes: 6 additions & 0 deletions speed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import pstats
p = pstats.Stats('profile')
p.strip_dirs()
p.sort_stats('tottime')
p.print_stats(50)

0 comments on commit 9bcca4d

Please sign in to comment.