From ad7ecb885035ee93b50fe3621b6a4d11077d1de8 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Wed, 1 Jun 2016 20:24:48 +0200 Subject: [PATCH] 1.5.0rc1 --- CHANGELOG | 15 +++++++++++++++ gns3server/version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 006554dc..059c85b7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,20 @@ # Change Log +## 1.5.0rc1 01/06/2016 + +* Save an restore docker permission +* Export the list of volumes to a env variable accessible in the container +* Fix a crash when docker start command is None +* Ubridge 0.9.4 is require +* Generate a MAC address using the project + node UUID. Ref #522. +* Catch extra args in windows signal handler +* Allow to block network traffic originating from the host OS for vmnet interfaces (Windows only). +* Fix an import error when you have no GNS3 VM +* Warn if you can not export a file due to permission issue +* Do not delete adapters when stopping a VMware VM. Ref #1066. +* Allocate a new vmnet interface if vmnet 0 1 or 8 is set to a custom adapter. Set adapter type to all adapters regardless if already configured or added by GNS3. +* Set default VMware VM adapter type to e1000. + ## 1.5.0b1 23/05/2016 * Allow an IOS router to stop even the Dynamips hypervisor command fail to be sent. Ref #488. diff --git a/gns3server/version.py b/gns3server/version.py index 68f0ba27..c8df8682 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,5 +23,5 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "1.5.0dev5" +__version__ = "1.5.0rc1" __version_info__ = (1, 5, 0, -99)