Skip to content

Commit

Permalink
2.0.0 beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed Dec 7, 2016
1 parent 52260cb commit d006ea0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG
@@ -1,5 +1,24 @@
# Change Log

## 2.0.0 beta 1 07/12/2016

* Fix crash if at controller loading the remote server is not a GNS3 server
* Update the way we start controller to avoid hiding crash reports
* Fix when you switch console from VNC to telnet it's fail
* AttributeError: 'Project' object has no attribute 'emit'
* Improve autostart logging
* Fix warning when vmware is not installed
* If a VMware command fail retry
* Do not recurse scan for images in standard image directory
* When we restore snapshot on a fail project do not crash
* Catch error when qemuy can't connect to his console
* Catch error when no space left on disk during export
* Improve vmware error message for easier copy paste
* Catch error if you export a project deleted from disk
* Qemu UDP listen on all ips
* Force yarl version >= 0.7.0
* Ask user to refresh is user session if he just installed ubridge

## 2.0.0 alpha 4 24/11/2016

* Do not block traffic originating from an Ethernet interface in the cloud. Ref #771.
Expand Down
2 changes: 1 addition & 1 deletion gns3server/crash_report.py
Expand Up @@ -53,7 +53,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "sync+https://1339db9521024612af8ab104adc85240:70d15b7dfbf84370bc9ef7c95f4d3459@sentry.io/38482"
DSN = "sync+https://7f26962042804f8fb586600e9b54f954:d94785a63265426bb4b2e3ecce0b8972@sentry.io/38482"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):
Expand Down
2 changes: 1 addition & 1 deletion gns3server/version.py
Expand Up @@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

__version__ = "2.0.0dev5"
__version__ = "2.0.0b1"
__version_info__ = (2, 0, 0, -99)

0 comments on commit d006ea0

Please sign in to comment.