diff options
author | Colleen Murphy <colleen.murphy@suse.de> | 2019-07-17 17:08:43 -0700 |
---|---|---|
committer | Colleen Murphy <colleen@gazlene.net> | 2019-09-14 03:14:45 -0700 |
commit | 131f7ddd4e671018743c7bffbb45dd83153a5366 (patch) | |
tree | 898060c0683d02709d0c326428cf3d54771f8c91 /keystone/api | |
parent | 049d9bcbe4121725aab593f9ba6dd9648e75d153 (diff) | |
download | keystone-131f7ddd4e671018743c7bffbb45dd83153a5366.tar.gz |
Update API version for access rules
This change updates the minor API version for the new access rules
feature for application credentials, and also adds documentation for
the new feature to the API reference as well as a release note.
bp whitelist-extension-for-app-creds
Change-Id: I8a03223df63877a4f86fbe7e9fa382fdd96c5934
Diffstat (limited to 'keystone/api')
-rw-r--r-- | keystone/api/discovery.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/api/discovery.py b/keystone/api/discovery.py index 3d180166a..92ce7e08f 100644 --- a/keystone/api/discovery.py +++ b/keystone/api/discovery.py @@ -28,9 +28,9 @@ _DISCOVERY_BLUEPRINT = flask.Blueprint('Discovery', __name__) def _get_versions_list(identity_url): versions = {} versions['v3'] = { - 'id': 'v3.12', + 'id': 'v3.13', 'status': 'stable', - 'updated': '2019-01-22T00:00:00Z', + 'updated': '2019-07-19T00:00:00Z', 'links': [{ 'rel': 'self', 'href': identity_url, |