diff --git a/ceilometer_powervm/version.py b/ceilometer_powervm/version.py new file mode 100644 index 0000000..d80fa63 --- /dev/null +++ b/ceilometer_powervm/version.py @@ -0,0 +1,17 @@ +# Copyright 2015 IBM Corp. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import pbr.version + +version_info = pbr.version.VersionInfo('__project__') diff --git a/doc/source/conf.py b/doc/source/conf.py index 7a7c3ab..e26be4f 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -53,10 +53,11 @@ copyright = u'2015, IBM' # |version| and |release|, also used in various other places throughout the # built documents. # +import ceilometer_powervm.version # The short X.Y version. -version = '0.1.0' +version = ceilometer_powervm.version.version_info.version_string() # The full version, including alpha/beta/rc tags. -release = '0.1.0' +release = ceilometer_powervm.version.version_info.release_string() # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.