diff --git a/CHANGELOG b/CHANGELOG index f7e7cc88..9e902340 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,21 @@ # Change Log +## 2.1.5 18/04/2018 + +* Set the first byte to 0C when generating a random MAC address for a Qemu VM. Ref #1267. +* Update appliance files. +* Do not use VMnet0 when allocating VMnet adapters. +* Use SO_REUSEADDR before calling bind() where missing. Fixes #1289. +* Do not fail a Dynamips project conversion if a file being used. +* Catch exceptions when using AsyncioTelnetServer. Fixes #1321. +* Grid size support for projects. +* Remove 'include INSTALL' from MANIFEST. +* Fix issue with start all. +* Check for valid IP address and prevent to run on non-Windows platforms. +* Enable UDP tunnel option and use ICMP probing by default. +* Use the configured IP address to trace. +* Have TraceNG start without needing cmd.exe + ## 2.1.4 12/03/2018 * Add Juniper JunOS space appliance. diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 8303eb05..8b62c717 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -57,7 +57,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://6b6c2ce19b8545278f7ee00c333175a6:be17229ec8da460e9a126d02b82de5dc@sentry.io/38482" + DSN = "sync+https://f732825cd5004443b62a937d7d28c3bf:9e2bb2ac3f07496693fc9839c6193e20@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 78adf907..80e2c9a0 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,8 +23,8 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.1.5dev1" -__version_info__ = (2, 1, 5, 99) +__version__ = "2.1.5" +__version_info__ = (2, 1, 5, 0) # If it's a git checkout try to add the commit if "dev" in __version__: