diff --git a/CHANGELOG b/CHANGELOG index d3e98f354..aada7a243 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,12 @@ # Change Log +## 2.2.3 12/11/2019 + +* Fix issue when binding on 0.0.0.0. Fixes #2892 +* Allow double click on cloud with configured console to open session. Fixes #2894 +* Officially support Python 3.8. Ref https://github.com/GNS3/gns3-gui/issues/2895 +* Set psutil to version 5.6.3 in requirements.txt + ## 2.2.2 04/11/2019 * Fix KeyError: 'spice+agent'. Fixes #2890 diff --git a/gns3/crash_report.py b/gns3/crash_report.py index 4dba69539..203e9bf47 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://dbedb95015d948b3b38917d7ac01e15b:1fcb50016b474c12b14c53d2b83eeabc@sentry.io/38506" + DSN = "https://9090482e1e444838b80e5aa94596b9d8:65ab81b67c534e349550ae3766241cda@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 9ca31d989..9ca4199e4 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.3dev1" -__version_info__ = (2, 2, 3, 99) +__version__ = "2.2.3" +__version_info__ = (2, 2, 3, 0) # If it's a git checkout try to add the commit if "dev" in __version__: