From: Salvatore Orlando Date: Thu, 4 Aug 2011 16:42:23 +0000 (+0100) Subject: Relabelling API version to 1.0! X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ca1098c75c23a9c014494cf089e035c45c994325;p=openstack-build%2Fneutron-build.git Relabelling API version to 1.0! --- diff --git a/etc/quantum.conf b/etc/quantum.conf index ba96a9a27..336dd5b8f 100644 --- a/etc/quantum.conf +++ b/etc/quantum.conf @@ -14,7 +14,7 @@ bind_port = 9696 [composite:quantum] use = egg:Paste#urlmap /: quantumversions -/v0.1: quantumapi +/v1.0: quantumapi [app:quantumversions] paste.app_factory = quantum.api.versions:Versions.factory diff --git a/quantum/api/versions.py b/quantum/api/versions.py index 18635040a..2fd6812e2 100644 --- a/quantum/api/versions.py +++ b/quantum/api/versions.py @@ -31,11 +31,11 @@ class Versions(wsgi.Application): """Respond to a request for all Quantum API versions.""" version_objs = [ { - "id": "v0.1", + "id": "v1.0", "status": "CURRENT", }, { - "id": "v1.0", + "id": "v1.1", "status": "FUTURE", }, ]