Skip to content

Commit 6862c0a

Browse files
Harish KantamneniPhilip Langdale
Harish Kantamneni
authored and
Philip Langdale
committed
OPSAPS-23512. Bump API version to 9 for CM5.3.
Introduced V9 API for CM5.3. So bumping the version to 9 in the python API too.
1 parent 7233083 commit 6862c0a

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
@@ -35,7 +35,7 @@
3535

3636
setup(
3737
name = 'cm_api',
38-
version = '8.0.0', # Compatible with API v8 (CM 5.2)
38+
version = '9.0.0', # Compatible with API v9 (CM 5.3)
3939
packages = find_packages('src', exclude=['cm_api_tests']),
4040
package_dir = {'cm_api': 'src/cm_api',
4141
'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 = 8
33+
API_CURRENT_VERSION = 9
3434

3535
class ApiException(RestException):
3636
"""

0 commit comments

Comments
 (0)