Skip to content

Commit

Permalink
Release v2.2.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Aug 10, 2019
1 parent 8862b60 commit 47d6a4f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 2.2.0rc1 10/08/2019

* Bump jsonschema to version 3.0.2
* Fix "Unable to change Remote Main Server IP". Fixes #2823
* Fix "AttributeError: 'QGraphicsTextItem' object has no attribute 'locked'". Fixes #2814
* Fix a minor typo in the setup wizard

## 2.2.0b4 11/07/2019

* Fix issue preventing to open the QFileDialog in the correct directory.
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://43af0b0d9ef3423b97a19c66e8719f4d:3fe127a8969a4ca9964a9e375ad87673@sentry.io/38506"
DSN = "https://8779714c9deb401794302d8acc18f225:460486dd09024c2f925e5e78f9268d37@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.0dev15"
__version_info__ = (2, 2, 0, 99)
__version__ = "2.2.0rc1"
__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 47d6a4f

Please sign in to comment.