From bdb23d6d3bf57fe91095ae27561aba2182e61d82 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 27 Jul 2015 12:10:01 -0600 Subject: [PATCH] 1.3.8 --- CHANGELOG | 17 +++++++++++++++++ gns3server/version.py | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 278f66b7..5382d670 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,22 @@ # Change Log +## 1.3.8 27/07/2015 + +* Catch ProcessLookupError when updating iouyap config. Fixes #255. +* Fixes IOS adapters and WICS cannot be removed. Fixes #282. +* Makes sure the loop is running when closing the app. +* Catch GeneratorExit exception. Fixes #231. +* Fixes missing chipset info for VirtualBox VM. Fixes #254. +* Fixes IOURC upload. +* Restore images & projects tarballs +* Allow users to backup projects and images. +* Update gns3.conf.upstart. +* Fix incorrect vboxmanage sudo command. +* Backport from 1.4: option to drop nvram & disk files for IOS routers in order to save disk space. +* Backport from 1.4: Remove timeout to wait for connections to finish. +* Backport from 1.4: Fixes RuntimeError: Event loop is closed. +* Backport from 1.4: Bind host on 0.0.0.0 when checking for a free UDP port. + ## 1.3.7 22/06/2015 * Prevent install on Python 2 diff --git a/gns3server/version.py b/gns3server/version.py index 4a3ea166..3ac141a8 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.3.8dev1" -__version_info__ = (1, 3, 8, -99) +__version__ = "1.3.8" +__version_info__ = (1, 3, 8, 0)