diff options
Diffstat (limited to 'ironic/api/controllers/v1/versions.py')
-rw-r--r-- | ironic/api/controllers/v1/versions.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ironic/api/controllers/v1/versions.py b/ironic/api/controllers/v1/versions.py index 97e03485e..677a27475 100644 --- a/ironic/api/controllers/v1/versions.py +++ b/ironic/api/controllers/v1/versions.py @@ -111,6 +111,7 @@ BASE_VERSION = 1 # v1.71: Add signifier for Scope based roles. # v1.72: Add agent_status and agent_status_message to /v1/heartbeat # v1.73: Add support for deploy and undeploy verbs +# v1.74: Add bios registry to /v1/nodes/{node}/bios/{setting} MINOR_0_JUNO = 0 MINOR_1_INITIAL_VERSION = 1 @@ -186,6 +187,7 @@ MINOR_70_CLEAN_DISABLE_RAMDISK = 70 MINOR_71_RBAC_SCOPES = 71 MINOR_72_HEARTBEAT_STATUS = 72 MINOR_73_DEPLOY_UNDEPLOY_VERBS = 73 +MINOR_74_BIOS_REGISTRY = 74 # When adding another version, update: # - MINOR_MAX_VERSION @@ -193,7 +195,7 @@ MINOR_73_DEPLOY_UNDEPLOY_VERBS = 73 # explanation of what changed in the new version # - common/release_mappings.py, RELEASE_MAPPING['master']['api'] -MINOR_MAX_VERSION = MINOR_73_DEPLOY_UNDEPLOY_VERBS +MINOR_MAX_VERSION = MINOR_74_BIOS_REGISTRY # String representations of the minor and maximum versions _MIN_VERSION_STRING = '{}.{}'.format(BASE_VERSION, MINOR_1_INITIAL_VERSION) |