From 31634c4df4cff1a8fb0eae46404114c370cb4102 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 22 Mar 2016 15:49:48 -0700 Subject: [PATCH] Add PBR generation of version information Change-Id: I6391392645d8608a92c885071b26210eed3f5466 Partially-Implements: blueprint add-reno --- doc/conf.py | 11 +++++++++++ kolla/common/config.py | 6 +++--- setup.cfg | 1 - 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index a0d74bd978..da18af32cd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -39,6 +39,17 @@ master_doc = 'index' project = u'kolla' copyright = u'2013, OpenStack Foundation' +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# +# The short X.Y version. +from kolla.version import version_info as kolla_version +# The full version, including alpha/beta/rc tags. +release = kolla_version.version_string_with_vcs() +# The short X.Y version. +version = kolla_version.canonical_version_string() + # If true, '()' will be appended to :func: etc. cross-reference text. add_function_parentheses = True diff --git a/kolla/common/config.py b/kolla/common/config.py index 6d4d7108b6..b9ab56b3ed 100644 --- a/kolla/common/config.py +++ b/kolla/common/config.py @@ -15,7 +15,7 @@ import itertools from oslo_config import cfg from oslo_config import types -from kolla import version +from kolla.version import version_info as version RDO_MIRROR = "http://trunk.rdoproject.org/centos7" @@ -125,7 +125,7 @@ _CLI_OPTS = [ help=('The number of threads to use while building.' ' (Note: setting to one will allow real time' ' logging.)')), - cfg.StrOpt('tag', default=version.version_info.cached_version_string(), + cfg.StrOpt('tag', default=version.cached_version_string(), deprecated_group='kolla-build', help='The Docker tag'), cfg.BoolOpt('template-only', default=False, @@ -284,5 +284,5 @@ def parse(conf, args, usage=None, prog=None, project='kolla', usage=usage, prog=prog, - version=version.version_info.cached_version_string(), + version=version.cached_version_string(), default_config_files=default_config_files) diff --git a/setup.cfg b/setup.cfg index b27943b069..d4e4ba39be 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,5 @@ [metadata] name = kolla -version = 2.0.0 summary = Kolla OpenStack Deployment description-file = README.rst