Skip to content

Commit 121cb30

Browse files
author
Axel Dahlberg
committed
Bump version: 3.0.13 → 3.0.14
1 parent 6cb20bd commit 121cb30

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.13
2+
current_version = 3.0.14
33
commit = True
44
tag = False
55

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build Status](https://travis-ci.com/SoftwareQuTech/SimulaQron.svg?branch=Develop)](https://travis-ci.com/SoftwareQuTech/SimulaQron)
22

3-
SimulaQron - simple quantum network simulator (3.0.13)
3+
SimulaQron - simple quantum network simulator (3.0.14)
44
=====================================================
55

66
The purpose of this simulator of quantum network nodes is to allow you to develop new applications for

simulaqron/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from simulaqron.tests_run import main as tests
22

33
__all__ = ['tests']
4-
__version__ = '3.0.13'
4+
__version__ = '3.0.14'

simulaqron/network.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def running(self):
133133
self._running = False
134134
break
135135
except Exception as err:
136-
logging.exception(f"Got unexpected exception when trying to connect: {err}")
136+
logging.exception("Got unexpected exception when trying to connect: {}".format(err))
137137
raise err
138138
else:
139139
cqc.close()

0 commit comments

Comments
 (0)