From 976154fd0bb9b141c0ac7d6243c5fdad5bcc70aa Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Wed, 17 Feb 2016 19:38:34 +0100 Subject: [PATCH] 1.4.2 --- CHANGELOG | 15 +++++++++++++++ gns3server/version.py | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index cc33c9aa8..7332064b3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,20 @@ # Change Log +## 1.4.2 17/02/2016 +* Fix missing format in IOU export +* Fix number of arguments to the UDP errors on VBOX +* Add verification when UDP tunnel is created in a VirtualBox VM. Ref #899. +* Fixes VMware linked clone cleanup bug. Fixes #420. +* Removed docker support from 1.4 (drop unused code) +* Fix a crash if you create a file named IOS in the image dir +* Disallow creating project with " in the path +* Always look at the registry to find vmrun.exe on Windows. +* Check for VMware VIX library version. Fixes #413. +* Fixes VDE not working #345. +* Do not list qemu binary with -spice in the name +* Send command line used to start the VM to client +* Fix crash if you have a { in your user name + ## 1.4.1 01/02/2016 * VMware raise error if version is not found * For topologies before 1.4 manage qemu missing diff --git a/gns3server/version.py b/gns3server/version.py index feeac6c00..16ecfc8a0 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.2dev1" -__version_info__ = (1, 4, 2, -99) +__version__ = "1.4.2" +__version_info__ = (1, 4, 2, 0)