1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 19:38:57 +00:00

Release v2.2.0rc3

This commit is contained in:
grossmj 2019-08-11 19:14:56 -07:00
parent 2feec666a2
commit 4656521987
3 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,9 @@
# Change Log
## 2.2.0rc3 12/08/2019
* Revert to jsonschema 2.6.0 due to packaging problem.
## 2.2.0rc2 10/08/2019
* Bump jsonschema to version 3.0.2

View File

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://0515b114884245ee8324d01d9ccc5e8e:505f352146314efd8f0e8af473a6ab3f@sentry.io/38482"
DSN = "https://f6c36a57e67240618f53e08a5ee6988e:45f2a0ab125748409c3e95b4f86f4b76@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,9 +23,9 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.0rc2"
__version_info__ = (2, 2, 0, -99)
# If it's a git checkout try to add the commit
__version__ = "2.2.0rc3"
__version_info__ = (2, 2, 0, -99) # If it's a git checkout try to add the commit
if "dev" in __version__:
try:
import os