diff --git a/CHANGELOG b/CHANGELOG index f1968a41..3b6baac5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,13 @@ # Change Log +## 2.0.0rc2 10/03/2017 + +* Drop color logging for remote install, seem to fail in some conditions +* Cleanup the remote install script +* Support for Xenial in remote install +* Fix GNS3VM settings are lost at startup +* When we receive settings from the client save them on disk + ## 2.0.0 RC 1 06/03/2017 * Update the documentation diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index d5e350a5..defbe8e1 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -54,7 +54,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://5b834577b69a4b77b112f020412237b5:b648d289253740daad5c08a939ceffd7@sentry.io/38482" + DSN = "sync+https://7c028290d17b4035916285b304d42311:ddf752e704c7423cacab93f8e34f713c@sentry.io/38482" if hasattr(sys, "frozen"): cacert = get_resource("cacert.pem") if cacert is not None and os.path.isfile(cacert): diff --git a/gns3server/version.py b/gns3server/version.py index 676089c1..eab66a52 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,7 +23,7 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.0.0dev10" +__version__ = "2.0.0rc2" # If it's a git checkout try to add the commit if "dev" in __version__: