From e4396938425bc27fc730d580a6cd4ee6e3fd09e9 Mon Sep 17 00:00:00 2001 From: Akihiro MOTOKI Date: Mon, 20 Aug 2012 16:56:19 +0900 Subject: [PATCH] Remove v1.0 and v1.1 API from version info. Fixes bug 1038905. Change-Id: Ifbb991eef528808ecb3543c3db862f4ca3c29f32 --- quantum/api/versions.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/quantum/api/versions.py b/quantum/api/versions.py index e3fe4785b..0e4c09362 100644 --- a/quantum/api/versions.py +++ b/quantum/api/versions.py @@ -35,17 +35,9 @@ class Versions(object): def __call__(self, req): """Respond to a request for all Quantum API versions.""" version_objs = [ - { - "id": "v1.0", - "status": "DEPRECATED", - }, - { - "id": "v1.1", - "status": "CURRENT", - }, { "id": "v2.0", - "status": "PROPOSED", + "status": "CURRENT", }, ] -- 2.45.2