From ce7ac0505a780b8eddd5f15c6b2bbd03ddc1e5d3 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 1 Feb 2016 17:46:05 +0100 Subject: [PATCH] 1.4.1 --- CHANGELOG | 16 ++++++++++++++++ gns3server/version.py | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1693fb3a..cc33c9aa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,21 @@ # Change Log +## 1.4.1 01/02/2016 +* VMware raise error if version is not found +* For topologies before 1.4 manage qemu missing +* Fixes issue with packet capture on VMware VMs. Fixes #396. +* Fixes concurrency issue when closing multiple VMware linked clone VMs. Fixes #410. +* Fixes "can only use tap interfaces that both already exist and are up". Fixes #399. +* Send machine stats via the notification stream +* Check for /dev/kvm instead of kvm-ok +* Show a warning when starting ASA8 +* Fix error when setting Qemu VM boot to 'cd' (HDD or CD/DVD-ROM) +* Fixed the VMware default VM location on Windows, so that it doesn't assume the "Documents" folder is within the %USERPROFILE% folder, and also support Windows Server's folder (which is "My Virtual Machines" instead of "Virtual Machines"). +* Improve dynamips startup_config dump +* Dump environnement to server debug log +* Fix usage of qemu 0.10 on Windows +* Show hostname when the hostname is missing in the iourc.txt + ## 1.4.0 12/01/2016 * Release 1.4.0 diff --git a/gns3server/version.py b/gns3server/version.py index 9514c2ba..267e3460 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.4.1dev2" -__version_info__ = (1, 4, 1, -99) +__version__ = "1.4.1" +__version_info__ = (1, 4, 1, 0)