Release v2.2.0a4

This commit is contained in:
grossmj
2019-04-05 19:10:04 +08:00
parent f0b8b22e8a
commit 45102a07b6
3 changed files with 14 additions and 3 deletions

View File

@@ -1,5 +1,16 @@
# Change Log
## 2.2.0a4 05/04/2019
* Use the full version number for path to config files. Ref https://github.com/GNS3/gns3-gui/issues/2756
* Fix error message when shutting down GUI without a started server.
* Fix remote packet capture and make sure packet capture is stopped when deleting an NIO. Fixes https://github.com/GNS3/gns3-gui/issues/2753
* Store config files in version specific location
* Update pytest from 4.3.1 to 4.4.0
* Fix error messages on closing GNS3 application. Fixes https://github.com/GNS3/gns3-gui/issues/2750
* Fix bug when list of files for an appliance is not displayed.
* Update 'local' to 'bundled' in server & gui, Fixes: #1561
## 2.2.0a3 25/03/2019
* Fix bug when changing symbol. Fixes #2740

View File

@@ -52,7 +52,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://bb33af9759d54ff8be4a0dab6820a754:71529bff02b244688eb6b644c056c06c@sentry.io/38506"
DSN = "https://d4962cd8f9ed4259a568b6931d8d2404:4f5cb4bbc93742e89620d4b1522900da@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

View File

@@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.0dev9"
__version_info__ = (2, 2, 0, 99)
__version__ = "2.2.0a4"
__version_info__ = (2, 2, 0, -99)
# If it's a git checkout try to add the commit
if "dev" in __version__: