Release v2.1.11

This commit is contained in:
grossmj 2018-09-28 20:47:44 +02:00
parent 4d95e0b51f
commit 41d4ecc4b7
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
# Change Log
## 2.1.11 28/09/2018
* Catch some exceptions.
## 2.1.10 15/09/2018
* Include locale information and GNS3 VM version in crash reports.

View File

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://71472e2845b2422cab117bdfa8af55ec:da50c8f08b9f44d8b905356741c278df@sentry.io/38482"
DSN = "https://8a4a7325dfcf4661a0b04d92b0a7d32e:14f83f7a65e54df88e5f06abad85b152@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

View File

@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.1.11dev1"
__version_info__ = (2, 1, 11, 99)
__version__ = "2.1.11"
__version_info__ = (2, 1, 11, 0)
# If it's a git checkout try to add the commit
if "dev" in __version__: