diff --git a/CHANGELOG b/CHANGELOG index 41c712d50..d3e98f354 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,14 @@ # Change Log +## 2.2.2 04/11/2019 + +* Fix KeyError: 'spice+agent'. Fixes #2890 +* Fix wrong log.error() call when exporting file. +* Revert "Explicitly cleanup the cache directory." +* Fix "UnboundLocalError: local variable 'pywintypes' referenced before assignment" +* Fix GUI uses only telnet console. Fixes #2885 +* Fix missing sys module in sudo.py Fixes #2886 + ## 2.2.1 01/11/2019 * Check if console_type is None. diff --git a/gns3/crash_report.py b/gns3/crash_report.py index 933adabf9..4dba69539 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://b417e24c01214abb838e543a55da28a5:137cd1cd75924dbe96908b00c2400f7d@sentry.io/38506" + DSN = "https://dbedb95015d948b3b38917d7ac01e15b:1fcb50016b474c12b14c53d2b83eeabc@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 f4e08c238..d60e951b3 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.2dev1" -__version_info__ = (2, 2, 2, 99) +__version__ = "2.2.2" +__version_info__ = (2, 2, 2, 0) # If it's a git checkout try to add the commit if "dev" in __version__: