Skip to content

Commit a1542e8

Browse files
author
Aravind Selvan
committed
[api] OPSAPS-32887 CM API version needs to be incremented to 13
Bump API version to 13 for CM 5.8 on the CM Python API Testing: make test
1 parent 201b9f0 commit a1542e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name = 'cm_api',
41-
version = '12.0.0', # Compatible with API v12 (CM 5.7)
41+
version = '13.0.0', # Compatible with API v13 (CM 5.8)
4242
packages = find_packages('src', exclude=['cm_api_tests']),
4343
package_dir = {'cm_api': 'src/cm_api',
4444
'cm_shell': 'src/cm_shell'},

python/src/cm_api/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
LOG = logging.getLogger(__name__)
3131

3232
API_AUTH_REALM = "Cloudera Manager"
33-
API_CURRENT_VERSION = 12
33+
API_CURRENT_VERSION = 13
3434

3535
class ApiException(RestException):
3636
"""

0 commit comments

Comments
 (0)