Add optional revision field to version number

Add a revision field to the version number to account for releases from
the stable branch, e.g. 2011.3.1.

See http://wiki.openstack.org/StableBranchRelease

Change-Id: I34238a5639d34c9cf44655775a6be80fdd446233
This commit is contained in:
Mark McLoughlin 2012-01-11 07:19:59 +00:00
parent 4c5586a28f
commit bd035a5a6d
1 changed files with 3 additions and 3 deletions

View File

@ -14,13 +14,13 @@
# License for the specific language governing permissions and limitations
# under the License.
NOVA_VERSION = ['2012', '1']
YEAR, COUNT = NOVA_VERSION
NOVA_VERSION = ['2012', '1', None]
YEAR, COUNT, REVISION = NOVA_VERSION
FINAL = False # This becomes true at Release Candidate time
def canonical_version_string():
return '.'.join([YEAR, COUNT])
return '.'.join(filter(None, NOVA_VERSION))
def version_string():