From 866353e8e55f5753c09f46d79a14fd4e97f86505 Mon Sep 17 00:00:00 2001 From: Steve McIntyre Date: Fri, 31 Jul 2015 16:31:27 +0100 Subject: Releasing VLANd version 0.3 Change-Id: I31ea5fa6d68c357092b0705e3f5d082f0bb48dda --- Changelog | 30 +++++++++++++++++++++++++++--- admin.py | 2 +- vland.py | 2 +- 3 files changed, 29 insertions(+), 5 deletions(-) diff --git a/Changelog b/Changelog index 8660b5e..00d88f9 100644 --- a/Changelog +++ b/Changelog @@ -1,8 +1,25 @@ -vland 0.1 +vland 0.3 - * Initial Release + * Massive numbers of bugfixes and code cleanups + * Added two new switch drivers: + + TP-Link TL-SG2XXX family (TPLinkTLSG2XXX) + + Netgear XSM family (NetgearXSM) + * Added "debug" option to all the switch drivers to log all interactions + * Added internal caching of port modes within the driver core for a large + speed-up in normal use + * Bug fix to handling of trunk ports in the CiscoCatalyst driver, + improving VLAN interop with other switches + * Huge changes to the test lab, now using 5 switches and 10 hosts + * Big improvements to the test suite: + + Match the new test lab layout + + Move more of the core test code into the test-common utility library + + Massively improved the check-networks test runner for the test hosts + + Added parsing of the UP/DOWN results in test-common to give a simple + PASS/FAIL result for each test + + Added more tests + * All logging now in UTC - -- Steve McIntyre Wed, 24 Dec 2014 18:31:24 +0000 + -- Steve McIntyre Fri, 31 Jul 2015 16:21:50 +0100 vland 0.2 @@ -15,3 +32,10 @@ vland 0.2 environment -- Steve McIntyre Fri, 13 Feb 2015 15:42:31 +0800 + +vland 0.1 + + * Initial Release + + -- Steve McIntyre Wed, 24 Dec 2014 18:31:24 +0000 + diff --git a/admin.py b/admin.py index 4b6bd78..f37565f 100644 --- a/admin.py +++ b/admin.py @@ -30,7 +30,7 @@ from errors import InputError, SocketError from config.config import VlanConfig from ipc.ipc import VlanIpc -version = "0.3-DEV" +version = "0.3" banner = "Linaro VLANd admin interface, version %s" % version def is_positive(text): diff --git a/vland.py b/vland.py index 83078c4..ae130a8 100644 --- a/vland.py +++ b/vland.py @@ -37,7 +37,7 @@ class DaemonState: """ Simple container for stuff to make for nicer syntax """ state = DaemonState() -state.version = "0.3-DEV" +state.version = "0.3" state.banner = "Linaro VLANd version %s" % state.version state.starttime = time.time() -- cgit v1.2.3