pull/874/head v1.5.3
Julien Duponchelle 7 years ago
parent 8019374ed0
commit 19c4ec1867
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -1,5 +1,9 @@
# Change Log
## 1.5.3 12/01/2016
* Fix sporadically systemd is unable to start gns3-server
## 1.5.3 rc1 20/12/2016
* Support aiohttp 1.2 (but not compatible with previous versions)

@ -52,7 +52,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://0c6db11c99c2411390264f331901840d:065cbfcd3ad5466aa8b8260fc7a1f976@sentry.io/38482"
DSN = "sync+https://700b0c46edb0473baacd2dc318d8de1f:824bd6d75471494ebcb87ce27cfdeade@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "1.5.3dev2"
__version_info__ = (1, 5, 3, -99)
__version__ = "1.5.3"
__version_info__ = (1, 5, 3, 0)

Loading…
Cancel
Save