From a1a9a5440da9b02ad074c21803ad5ff6fa67c787 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Sat, 30 Jun 2012 12:02:20 +0900 Subject: [PATCH] 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 --- ryu/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))