Codebase list python-castellan / 261ec29
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: Id70a728eedb6121784333e8fed0e608834f98d84 Andreas Jaeger 6 years ago
1 changed file(s) with 5 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
5757 project = u'Castellan Release Notes'
5858 copyright = u'2017, Castellan Developers'
5959
60 # The version info for the project you're documenting, acts as replacement for
61 # |version| and |release|, also used in various other places throughout the
62 # built documents.
63 #
60 # Release notes do not need a version number in the title, they
61 # cover multiple releases.
62 # The full version, including alpha/beta/rc tags.
63 release = ''
6464 # The short X.Y version.
65 from pbr import version as pbr_version
66 # The full version, including alpha/beta/rc tags.
67 release = pbr_version.VersionInfo('castellan').version_string_with_vcs()
68 # The short X.Y version.
69 version = pbr_version.VersionInfo('castellan').canonical_version_string()
65 version = ''
7066
7167 # The language for content autogenerated by Sphinx. Refer to documentation
7268 # for a list of supported languages.