diff --git a/CHANGELOG b/CHANGELOG index bb13547e2..ec0e715f4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,17 @@ # Change Log +## 2.0.2 30/05/2017 + +* Show a default symbol in case of corrupted file +* When another gui is already running exit instead of proper close to avoid any issue +* Fix duplicate on remote server use wrong location +* Display the location of settings when we disallow opening due to old release +* Improve search for dynamips in development on OSX +* Fix error display when loading a .png custom symbol +* Fix a crash in the progress dialog +* Fix a race condition when exporting a closed project +* Fix RuntimeError: wrapped C/C++ object of type NodeItem has been deleted + ## 2.0.1 16/05/2017 * Improve inline help. Fixes #1999. Add a warning about wifi interfaces in the cloud. Fixes #1902. diff --git a/gns3/crash_report.py b/gns3/crash_report.py index c03692b59..968f48150 100644 --- a/gns3/crash_report.py +++ b/gns3/crash_report.py @@ -51,7 +51,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://b9912fe90df3496e98ccfb44d9b9baf0:ac42a40e66314b48883243402b957290@sentry.io/38506" + DSN = "sync+https://063691a489374eda912ad454a1d80777:5ddb34d6b23c4a08b040efce23aaac78@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 060be9888..bdc96b7e1 100644 --- a/gns3/version.py +++ b/gns3/version.py @@ -17,7 +17,7 @@ # __version__ is a human-readable version number. -__version__ = "2.0.2dev1" +__version__ = "2.0.2" # If it's a git checkout try to add the commit if "dev" in __version__: @@ -37,4 +37,4 @@ number has been incremented) """ -__version_info__ = (2, 0, 2, -99) +__version_info__ = (2, 0, 2, 0)