From 21366afc54cbb626cc36dfd110351d4c0af3b7f8 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Fri, 30 Nov 2012 20:57:53 -0800 Subject: [PATCH] 2.0.0rc1 -> 2.0.0 final --- INSTALL | 2 +- LICENSE | 2 +- README.md | 6 +++--- mininet/net.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/INSTALL b/INSTALL index 59aee0a..9168bd7 100644 --- a/INSTALL +++ b/INSTALL @@ -1,7 +1,7 @@ Mininet Installation/Configuration Notes -Mininet 2.0.0rc1 +Mininet 2.0.0 --- diff --git a/LICENSE b/LICENSE index ba81938..704d157 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Mininet 2.0.0rc1 License +Mininet 2.0.0 License Copyright (c) 2012 Open Networking Laboratory Copyright (c) 2009-2012 Bob Lantz and The Board of Trustees of diff --git a/README.md b/README.md index 3e75af3..cf0e8b8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Mininet: Rapid Prototyping for Software Defined Networks *The best way to emulate almost any network on your laptop!* -Version 2.0.0rc1 +Version 2.0.0 ### What is Mininet? @@ -67,9 +67,9 @@ Mininet includes: `mn -c` -### New features in 2.0.0rc1 +### New features in 2.0.0 -Mininet 2.0.0rc1 is a major upgrade and provides +Mininet 2.0.0 is a major upgrade and provides a number of enhancements and new features, including: * "Mininet-HiFi" functionality: diff --git a/mininet/net.py b/mininet/net.py index 33791c1..b31a10c 100755 --- a/mininet/net.py +++ b/mininet/net.py @@ -101,7 +101,7 @@ from mininet.util import macColonHex, ipStr, ipParse, netParse, ipAdd from mininet.term import cleanUpScreens, makeTerms # Mininet version: should be consistent with README and LICENSE -VERSION = "2.0.0rc1" +VERSION = "2.0.0" class Mininet( object ): "Network emulation with hosts spawned in network namespaces."