Skip to content

Commit

Permalink
Release v2.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ziajka committed Jun 14, 2018
1 parent 20d4f73 commit 47d335f
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.1.8 14/06/2018

* Add error information when cannot access/read IOS/IOU config file. Ref #2501
* Fallback when using process name to bring console to front.
* Use process name to bring console to front. Fixes #2514.

## 2.1.7 12/06/2018

* Do not try to update link if it is being deleted. Fixes #2483.
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://806956d411fc4cdf8cda8f27b08079a8:a1d1a6aaa57f4c46a7db02d89f5fab95@sentry.io/38506"
DSN = "sync+https://08a47076d6cf4eebb455e8e79ef1e78d:ee721159025d4e2ea044e119a8789ece@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.8dev1"
__version_info__ = (2, 1, 8, 99)
__version__ = "2.1.8"
__version_info__ = (2, 1, 8, 0)

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

0 comments on commit 47d335f

Please sign in to comment.