From d88c5648deea40efb9f26a1ab13b78cc9dd93e88 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 16 Jun 2015 18:56:50 +0200 Subject: [PATCH] 1.3.5 --- CHANGELOG | 12 ++++++++++++ gns3server/version.py | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index cea6d503..97d0c48f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,17 @@ # Change Log +## 1.3.5 16/06/15 + +* Ignore invalid characters when reading the output of a process +* Turn on / off authentication +* Ensure no colored output on Windows +* Do not stop saving IOS router configs when there is an exception while a project is committed. +* Create a private config file if expected +* Distribute our own version of netifaces working with python 3 +* Fix crash if a private config exist in IOS but no private config file +* Basic Auth support +* Fix crash when virtualbox list of VMS return an empty line + ## 1.3.4 02/06/15 * Drop useless dependencie dateutil diff --git a/gns3server/version.py b/gns3server/version.py index 26313f06..b9ff6d80 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.5dev1" -__version_info__ = (1, 3, 5, -99) +__version__ = "1.3.5" +__version_info__ = (1, 3, 5, 0)