1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

Release v2.1.20

This commit is contained in:
grossmj 2019-05-29 15:44:25 +07:00
parent a860243531
commit 053a16960c
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
# Change Log
## 2.1.20 29/05/2019
* Ignore Unicode errors when reading base config file contents.
## 2.1.19 28/05/2019
* Sync appliances.

View File

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://1a438abf17244ba98bb5e5869b9185c7:40dd0ad5e49b4e5e80a4cb057498f4d3@sentry.io/38482"
DSN = "https://7906a5d6a7d74311a065c18376ccbcd6:2ac5bbbc01a74192a8059a8f350d4efe@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.20dev1"
__version_info__ = (2, 1, 20, 99)
__version__ = "2.1.20"
__version_info__ = (2, 1, 20, 0)
# If it's a git checkout try to add the commit
if "dev" in __version__: