From fe5ebdbde1a81e4920c9f906fcfbe7fbb068b7c2 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Fri, 20 Apr 2012 10:43:18 -0700 Subject: [PATCH] Use v1 / v2 / v3 for version numbers to match tags In the next several months since we wont be supporting maintenance releases, Just use v1/v2/v3/v4 for releases to match our tags. We can switch to an x.y.z or openstack style versioning when appropriate Signed-off-by: Steven Dake --- heat/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heat/version.py b/heat/version.py index 2d33bbc8a3..9d6b092ab6 100644 --- a/heat/version.py +++ b/heat/version.py @@ -20,8 +20,8 @@ except ImportError: 'revision_id': 'LOCALREVISION', 'revno': 0} -HEAT_VERSION = ['0.0', '3'] -COUNT, REVISION = HEAT_VERSION +HEAT_VERSION = ['v2'] +REVISION = HEAT_VERSION FINAL = False # This becomes true at Release Candidate time