Update version for Liberty

Update the version for Liberty, switching from date-based versioning
to pre-versioning using SemVer. See
http://lists.openstack.org/pipermail/openstack-dev/2015-May/065211.html
and
http://lists.openstack.org/pipermail/openstack-dev/2015-June/067082.html
for details.

Any references to future versions are updated to match the new
semver style versions.

Change-Id: I6a35fa0dda798fad93b804d00a46af80f08d475c
This commit is contained in:
Doug Hellmann 2015-06-16 19:49:15 +00:00 committed by Matt Riedemann
parent b06867c581
commit b44c3d31dc
4 changed files with 6 additions and 6 deletions

View File

@ -335,7 +335,7 @@ MIN_LIBVIRT_VERSION = (0, 9, 11)
# When the above version matches/exceeds this version
# delete it & corresponding code using it
MIN_LIBVIRT_DEVICE_CALLBACK_VERSION = (1, 1, 1)
# TODO(mriedem): Change MIN_LIB_VERSION to this in the 2016.1 'M' release.
# TODO(mriedem): Change MIN_LIB_VERSION to this in the 13.0.0 'M' release.
NEXT_MIN_LIBVIRT_VERSION = (0, 10, 2)
# Live snapshot requirements
MIN_LIBVIRT_LIVESNAPSHOT_VERSION = (1, 0, 0)
@ -554,13 +554,13 @@ class LibvirtDriver(driver.ComputeDriver):
self._version_to_string(MIN_LIBVIRT_PARALLELS_VERSION))
# TODO(mriedem): We plan to move to a minimum required version of
# libvirt 0.10.2 in the 2016.1 'M' release so if we're running with
# libvirt 0.10.2 in the 13.0.0 'M' release so if we're running with
# less than that now, log a warning.
if not self._host.has_min_version(NEXT_MIN_LIBVIRT_VERSION):
LOG.warning(_LW('Running Nova with a libvirt version less than '
'%(version)s is deprecated. The required minimum '
'version of libvirt will be raised to %(version)s '
'in the 2016.1 release.'),
'in the 13.0.0 release.'),
{'version': self._version_to_string(
NEXT_MIN_LIBVIRT_VERSION)})

View File

@ -54,7 +54,7 @@ imagecache_opts = [
'This is only safe to enable if all compute nodes have '
'been updated to support this option (running Grizzly or '
'newer level compute). This will be the default behavior '
'in the 2016.1 release.'),
'in the 13.0.0 release.'),
cfg.IntOpt('remove_unused_resized_minimum_age_seconds',
default=3600,
help='Unused resized base images younger than this will not be '

View File

@ -223,7 +223,7 @@ class VMwareVCDriver(driver.ComputeDriver):
LOG.warning(_LW('Running Nova with a VMware vCenter version less '
'than %(version)s is deprecated. The required '
'minimum version of vCenter will be raised to '
'%(version)s in the 2016.1 release.'),
'%(version)s in the 13.0.0 release.'),
{'version': constants.MIN_VC_VERSION})
@property

View File

@ -1,6 +1,6 @@
[metadata]
name = nova
version = 2015.2
version = 12.0.0
summary = Cloud computing fabric controller
description-file =
README.rst