From b82b03116862132428b3b1d7c86dc463762c6497 Mon Sep 17 00:00:00 2001 From: ziajka Date: Fri, 4 Aug 2017 11:35:21 +0200 Subject: [PATCH] Release 2.1.0 beta 1 --- CHANGELOG | 11 +++++++++++ gns3/crash_report.py | 2 +- gns3/version.py | 6 ++++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9b50bb785..1ccf5ddd9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,16 @@ # Change Log +## 2.1.0b1 04/08/2017 + +* Info added to the Nat node +* Add missing popup information in cloud and docker node +* Handle invalid json in websockets +* Avoid invalid bad request error when receiving partial answer +* Catch parse error for broken SVG +* Filter QXcbConnection log messages +* Catch class 'PyQt5.QtNetwork.QNetworkReply'> returned a result with an error set +* Fix KeyError: 'overlay_notifications' + ## 2.1.0a2 31/07/2017 * Fix permission error when importing a project on a remote server diff --git a/gns3/crash_report.py b/gns3/crash_report.py index 20aec3f5e..b8aea215e 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://524bf289665d45ac91f2f621e8d9982f:35233ad66db0472b903e19305987c34f@sentry.io/38506" + DSN = "sync+https://11f1de2cf38745ed8075e492c8a274e9:1035b6adddef40c88acd71346241072e@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 74492aeca..6c218f691 100644 --- a/gns3/version.py +++ b/gns3/version.py @@ -16,8 +16,10 @@ # along with this program. If not, see . -__version__ = "2.1.0dev3" -__version_info__ = (2, 1, 0, -99)# If it's a git checkout try to add the commit +__version__ = "2.1.0b1" +__version_info__ = (2, 1, 0, -99) + +# If it's a git checkout try to add the commit if "dev" in __version__: try: import os