From ca1098c75c23a9c014494cf089e035c45c994325 Mon Sep 17 00:00:00 2001 From: Salvatore Orlando Date: Thu, 4 Aug 2011 17:42:23 +0100 Subject: [PATCH] Relabelling API version to 1.0! --- etc/quantum.conf | 2 +- quantum/api/versions.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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", }, ] -- 2.45.2