Release v2.2.0a3

This commit is contained in:
grossmj
2019-03-25 19:35:22 +08:00
parent b12cb5c939
commit ee3c758bb7
3 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Change Log
## 2.2.0a3 25/03/2019
* Fix bug when changing symbol. Fixes #2740
* Fix issue when images are not uploaded from appliance wizard. Ref https://github.com/GNS3/gns3-gui/issues/2738
## 2.2.0a2 14/03/2019
* Try to handle stacked widget layout differently. Ref #2605

View File

@@ -52,7 +52,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://cc555ea871c3443b8ef31f6bf2bb0d7a:5b6b0f2388bd4838a5c9187aae03fcad@sentry.io/38506"
DSN = "https://bb33af9759d54ff8be4a0dab6820a754:71529bff02b244688eb6b644c056c06c@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.0dev7"
__version_info__ = (2, 2, 0, 99)
__version__ = "2.2.0a3"
__version_info__ = (2, 2, 0, -99)
# If it's a git checkout try to add the commit
if "dev" in __version__: