bump Keystone version for Stein

Change-Id: I2c3aa095f0ceb28a97a61db27e595bc504b75bd0
This commit is contained in:
Adrian Turjak 2019-01-22 11:01:00 +13:00
parent 5318f64b33
commit a011fb6789
4 changed files with 13 additions and 7 deletions

View File

@ -26,9 +26,15 @@ For information about Identity API protection, see
<https://docs.openstack.org/keystone/latest/admin/identity-service-api-protection.html>`_
in the OpenStack Cloud Administrator Guide.
===================================
==================================
What's New in Version 3.12 (Stein)
==================================
- New optional multi-factor auth process involving auth receipts
==================================
What's New in Version 3.11 (Rocky)
===================================
==================================
- New endpoint /v3/limits-model for discovering the limit model in effect
- New description field in registered and project limits

View File

@ -28,9 +28,9 @@ _DISCOVERY_BLUEPRINT = flask.Blueprint('Discovery', __name__)
def _get_versions_list(identity_url):
versions = {}
versions['v3'] = {
'id': 'v3.11',
'id': 'v3.12',
'status': 'stable',
'updated': '2018-10-15T00:00:00Z',
'updated': '2019-01-22T00:00:00Z',
'links': [{
'rel': 'self',
'href': identity_url,

View File

@ -37,9 +37,9 @@ v3_MEDIA_TYPES = [
]
v3_EXPECTED_RESPONSE = {
"id": "v3.11",
"id": "v3.12",
"status": "stable",
"updated": "2018-10-15T00:00:00Z",
"updated": "2019-01-22T00:00:00Z",
"links": [
{
"rel": "self",

View File

@ -12,4 +12,4 @@
def release_string():
return 'v3.11'
return 'v3.12'