From: Akihiro MOTOKI Date: Mon, 20 Aug 2012 07:56:19 +0000 (+0900) Subject: Remove v1.0 and v1.1 API from version info. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=e4396938425bc27fc730d580a6cd4ee6e3fd09e9;p=openstack-build%2Fneutron-build.git Remove v1.0 and v1.1 API from version info. Fixes bug 1038905. Change-Id: Ifbb991eef528808ecb3543c3db862f4ca3c29f32 --- 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", }, ]