diff --git a/CHANGELOG b/CHANGELOG index 38381f2ff..435615f6f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,11 @@ # Change Log +## 2.2.0rc4 30/08/2019 + +* Fix issue when asking to run the setup wizard again. Ref #2846 +* Remove warning about VirtualBox not supporting nested virtualization. Ref https://github.com/GNS3/gns3-server/issues/1610 +* Ask user if they want to see the wizard again. Ref #2846 + ## 2.2.0rc3 12/08/2019 * Revert to jsonschema 2.6.0 due to packaging problem. diff --git a/gns3/crash_report.py b/gns3/crash_report.py index 5c0743d8f..241c64f66 100644 --- a/gns3/crash_report.py +++ b/gns3/crash_report.py @@ -52,7 +52,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "https://b0acef772b104514b9218056d4387706:a06b7415f63447529eb58150de3da8a6@sentry.io/38506" + DSN = "https://1f6b9eede6764707b7536c84fa4ccc20:e10952ac253f40a59f35ad3f6d4dd7d7@sentry.io/38506" if hasattr(sys, "frozen"): cacert = get_resource("cacert.pem") if cacert is not None and os.path.isfile(cacert): diff --git a/gns3/version.py b/gns3/version.py index b227f0ccc..831e820a3 100644 --- a/gns3/version.py +++ b/gns3/version.py @@ -23,8 +23,8 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.2.0dev17" -__version_info__ = (2, 2, 0, 99) +__version__ = "2.2.0rc4" +__version_info__ = (2, 2, 0, -99) # If it's a git checkout try to add the commit if "dev" in __version__: