summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-06-30 12:02:20 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-06-30 14:27:57 +0900
commita1a9a5440da9b02ad074c21803ad5ff6fa67c787 (patch)
tree9b8b7c4365dee2925456368db15b46fb96cf362f
parent23bd7d88e1986cff132716ebc76dc6d4300dcefa (diff)
Ryu 1.0
Bump the major version because: - Ryu fully support OpenFlow 1.0, Nicira Extensions, and OpenFlow 1.2. - Ryu was tested with various OpenFlow Hardware switches. - There is lots of improvement since the last release. Ryu is usable now so let's use the major version that implies so. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/__init__.py b/ryu/__init__.py
index 3cb60c61..ab813c93 100644
--- a/ryu/__init__.py
+++ b/ryu/__init__.py
@@ -14,5 +14,5 @@
# limitations under the License.
-version_info = (0, 2)
+version_info = (1, 0)
version = '.'.join(map(str, version_info))