82a4e247bf
Release management team has modified the way it releases projects and a new process and guideline has been established. This change adds support for the same. More information on this can be found at [1]. Within OpenStack, reno can be used to create release notes using the following command: tox -e venv -- reno new slug-goes-here where slug-goes-here is a prefix to your notes. More info on reno usage can be found at [2]. [1]: http://lists.openstack.org/pipermail/openstack-dev/2015-November/078301.html [2]: http://docs.openstack.org/developer/reno/usage.html Change-Id: Ic4c1d246b0c9dda7c4c3901ed9527481b6f8f3e3
18 lines
681 B
Python
18 lines
681 B
Python
# Copyright 2015 VMware, Inc.
|
|
#
|
|
# 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('vmware-nsx')
|