Bump supported API version to 1.5

Also update the README mentioning that we now support node names.

Change-Id: I6e13d1ddda56b8c4af21a905261ac97df8c8bcf1
This commit is contained in:
Dmitry Tantsur 2016-05-11 15:48:21 +02:00
parent a89a6043ee
commit 583152623b
3 changed files with 11 additions and 1 deletions

View File

@ -250,6 +250,13 @@ to the ``ClientV1`` constructor. Keyword arguments are passed to the client
constructor intact. The first 2 functions also accept deprecated ``auth_token``
argument, which should not be used.
Using names instead of UUID
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Starting with baremetal introspection API 1.5 (provided by **Ironic Inspector**
3.3.0) it's possible to use node names instead of UUIDs in all Python and CLI
calls.
.. _Gerrit Workflow: http://docs.openstack.org/infra/manual/developers.html#development-workflow
.. _Ironic Inspector: https://pypi.python.org/pypi/ironic-inspector

View File

@ -18,7 +18,7 @@ from ironic_inspector_client import v1
DEFAULT_API_VERSION = (1, 0)
MAX_API_VERSION = (1, 2)
MAX_API_VERSION = (1, 5)
# Reimport for backward compatibility

View File

@ -0,0 +1,3 @@
---
other:
- Bumped supported API version to 1.5.