Skip to content

Commit

Permalink
Release v2.2.0b3
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jun 15, 2019
1 parent aed1749 commit 98cfec1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 2.2.0b3 15/06/2019

* Fix template migration issues from GUI to controller. Fixes https://github.com/GNS3/gns3-gui/issues/2803
* %guest-cid% variable implementation for Qemu VMs. Fixes https://github.com/GNS3/gns3-gui/issues/2804
* Increase timeout from 2 to 5 seconds for synchronous check. Ref #2805

## 2.2.0b2 29/05/2019

* Fix KeyError: 'endpoint' issue. Fixes #2802
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://490d29e0583d4af5a05bea9d722c477d:e35f247c273d46fc8244681ad89bd5de@sentry.io/38506"
DSN = "https://768ba187f7d244bab74ea343a28d037c:d995affe39b34f94932101b402acb5cb@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):
Expand Down
4 changes: 2 additions & 2 deletions gns3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

__version__ = "2.2.0dev13"
__version_info__ = (2, 2, 0, 99)
__version__ = "2.2.0b3"
__version_info__ = (2, 2, 0, -99)

# If it's a git checkout try to add the commit
if "dev" in __version__:
Expand Down

0 comments on commit 98cfec1

Please sign in to comment.