Skip to content

Commit

Permalink
2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed May 30, 2017
1 parent 8ed8a2c commit 4e172fc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 2.0.2 30/05/2017

* Show a default symbol in case of corrupted file
* When another gui is already running exit instead of proper close to avoid any issue
* Fix duplicate on remote server use wrong location
* Display the location of settings when we disallow opening due to old release
* Improve search for dynamips in development on OSX
* Fix error display when loading a .png custom symbol
* Fix a crash in the progress dialog
* Fix a race condition when exporting a closed project
* Fix RuntimeError: wrapped C/C++ object of type NodeItem has been deleted

## 2.0.1 16/05/2017

* Improve inline help. Fixes #1999. Add a warning about wifi interfaces in the cloud. Fixes #1902.
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://b9912fe90df3496e98ccfb44d9b9baf0:ac42a40e66314b48883243402b957290@sentry.io/38506"
DSN = "sync+https://063691a489374eda912ad454a1d80777:5ddb34d6b23c4a08b040efce23aaac78@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 @@ -17,7 +17,7 @@


# __version__ is a human-readable version number.
__version__ = "2.0.2dev1"
__version__ = "2.0.2"

# If it's a git checkout try to add the commit
if "dev" in __version__:
Expand All @@ -37,4 +37,4 @@
number has been incremented)
"""

__version_info__ = (2, 0, 2, -99)
__version_info__ = (2, 0, 2, 0)

0 comments on commit 4e172fc

Please sign in to comment.