aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve McIntyre <steve.mcintyre@linaro.org>2015-07-31 16:31:27 +0100
committerSteve McIntyre <steve.mcintyre@linaro.org>2015-07-31 16:31:27 +0100
commit866353e8e55f5753c09f46d79a14fd4e97f86505 (patch)
treee3afb0b31cc12d2de9aa0f872434c03bea9f4448
parenta264b65186c7507127faf58caa90cd67cd5ff6dc (diff)
Releasing VLANd version 0.3
Change-Id: I31ea5fa6d68c357092b0705e3f5d082f0bb48dda
-rw-r--r--Changelog30
-rw-r--r--admin.py2
-rw-r--r--vland.py2
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 <steve.mcintyre@linaro.org> Wed, 24 Dec 2014 18:31:24 +0000
+ -- Steve McIntyre <steve.mcintyre@linaro.org> Fri, 31 Jul 2015 16:21:50 +0100
vland 0.2
@@ -15,3 +32,10 @@ vland 0.2
environment
-- Steve McIntyre <steve.mcintyre@linaro.org> Fri, 13 Feb 2015 15:42:31 +0800
+
+vland 0.1
+
+ * Initial Release
+
+ -- Steve McIntyre <steve.mcintyre@linaro.org> 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()