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
.

Fix two releasenotes that used broken RST, `X' is invalid, use instead
``X``. The release notes build failed due to the broken RST.

Change-Id: I5f526f39bdc9bb76266b5a86a4b96854db21d0de
This commit is contained in:
Andreas Jaeger 2017-11-17 10:09:11 +01:00 committed by Doug Hellmann
parent 923dc9041d
commit 7c9e8f30ea
3 changed files with 9 additions and 13 deletions

View File

@ -2,8 +2,8 @@
critical:
- >
The previous configuration options default for
`requeue_sample_on_dispatcher_error' and
`requeue_event_on_dispatcher_error' allowed to lose data very easily: if
``requeue_sample_on_dispatcher_error`` and
``requeue_event_on_dispatcher_error`` allowed to lose data very easily: if
the dispatcher failed to send data to the backend (e.g. Gnocchi is down),
then the dispatcher raised and the data were lost forever. This was
completely unacceptable, and nobody should be able to configure Ceilometer
@ -11,5 +11,5 @@ critical:
upgrade:
- >
The options `requeue_event_on_dispatcher_error' and
`requeue_sample_on_dispatcher_error' have been enabled and removed.
The options ``requeue_event_on_dispatcher_error`` and
``requeue_sample_on_dispatcher_error`` have been enabled and removed.

View File

@ -5,4 +5,4 @@ features:
upgrade:
- >
The option `glance_page_size' has been removed because it's not actually needed.
The option ``glance_page_size`` has been removed because it's not actually needed.

View File

@ -58,16 +58,12 @@ master_doc = 'index'
project = u'Ceilometer Release Notes'
copyright = u'2015, Ceilometer Developers'
# 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 ceilometer.version import version_info as ceilometer_version
# Release notes do not need a version number in the title, they
# cover multiple releases.
# The full version, including alpha/beta/rc tags.
release = ceilometer_version.version_string_with_vcs()
release = ''
# The short X.Y version.
version = ceilometer_version.canonical_version_string()
version = ''
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.