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.

Also new version was updated in resources with SupportStatus version 2015.2.

Change-Id: I6a35fa0dda798fad93b804d00a46af80f08d475c
This commit is contained in:
Doug Hellmann
2015-06-16 19:49:14 +00:00
committed by Sergey Kraynev
parent c8af47d3cf
commit 423110ef6e
16 changed files with 33 additions and 33 deletions

View File

@@ -247,7 +247,7 @@ class DockerContainer(resource.Resource):
'processing power(only supported for API version >= %s).') %
MIN_API_VERSION_MAP['cpu_shares'],
default=0,
support_status=support.SupportStatus(version='2015.2'),
support_status=support.SupportStatus(version='5.0.0'),
),
DEVICES: properties.Schema(
properties.Schema.LIST,
@@ -288,14 +288,14 @@ class DockerContainer(resource.Resource):
}
),
default=[],
support_status=support.SupportStatus(version='2015.2'),
support_status=support.SupportStatus(version='5.0.0'),
),
CPU_SET: properties.Schema(
properties.Schema.STRING,
_('The CPUs in which to allow execution '
'(only supported for API version >= %s).') %
MIN_API_VERSION_MAP['cpu_set'],
support_status=support.SupportStatus(version='2015.2'),
support_status=support.SupportStatus(version='5.0.0'),
)
}