From d67dbfcdac56dc9dd4fcb833837741f8e1ba00e0 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 17 Nov 2017 10:18:54 +0100 Subject: [PATCH] Remove setting of version/release from releasenotes Release notes are version independent, so remove version/release values. We've found that projects now require the service package to be installed in order to build release notes, and this is entirely due to the current convention of pulling in the version information. Release notes should not need installation in order to build, so this unnecessary version setting needs to be removed. This is needed for new release notes publishing, see I56909152975f731a9d2c21b2825b972195e48ee8 and the discussion starting at http://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html . Change-Id: Ic45dd63a5bc39e8d1fd612d76eebce003e614db3 --- releasenotes/source/conf.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 4733a41ed..028a1f76c 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -11,8 +11,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -from monasca_api.version import version_info - # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. @@ -41,8 +39,11 @@ master_doc = 'index' # General information about the project. repository_name = u'openstack/monasca-api' project = u'Monitoring API Release Notes' -version = version_info.canonical_version_string() -release = version_info.version_string_with_vcs() + +# Release notes do not need a version number in the title, they +# cover multiple releases. +version = '' +release = '' bug_project = u'863' bug_tag = u'' copyright = u'2014-present, OpenStack Foundation'