Skip to content

Commit

Permalink
Release v2.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ziajka committed Jun 12, 2018
1 parent 6ab2d63 commit 2744e66
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 2.1.7 12/06/2018

* Do not try to update link if it is being deleted. Fixes #2483.
* Fix can't add SVG image to project. Fixes #2502
* Remove unwanted trailing characters and other white spaces when reading .md5sum files. Fixes #2498.
* Update interface sequence number check. Fixes #2491.
* Logo should not have context menu, Fixes: #2507
* Update logo position only when changes, Fixes: #2506

## 2.1.6 22/05/2018

* Ask for global variables when project is loaded
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "sync+https://22de49ca89514046acf5c2d4759e8b06:62e5d41b53ad46e09398c62bc281f588@sentry.io/38506"
DSN = "sync+https://806956d411fc4cdf8cda8f27b08079a8:a1d1a6aaa57f4c46a7db02d89f5fab95@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.1.7dev1"
__version_info__ = (2, 1, 7, 99)
__version__ = "2.1.7"
__version_info__ = (2, 1, 7, 0)

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

0 comments on commit 2744e66

Please sign in to comment.