Skip to content

Commit e74d976

Browse files
authored
Bump version for hotfix (#192)
1 parent dcf9cbc commit e74d976

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python bindings for Carbon Black REST API
22

3-
**Latest Version: 1.5.3**
3+
**Latest Version: 1.5.4**
44

55
These are the new Python bindings for the Carbon Black Enterprise Response and Enterprise Protection REST APIs.
66
To learn more about the REST APIs, visit the Carbon Black Developer Network Website at https://developer.carbonblack.com.

docs/changelog.rst

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
CbAPI Changelog
22
===============
33

4+
CbAPI 1.5.4 - Released October 24, 2019
5+
----------------------------------------
6+
7+
Updates
8+
9+
* General
10+
* Prevent pytest from blocking python2 install
11+
12+
* CB Response
13+
* Fix python2 function overwrite for max_children
14+
415
CbAPI 1.5.3 - Released October 15, 2019
516
----------------------------------------
617

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'1.5'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.5.3'
64+
release = u'1.5.4'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name='cbapi',
41-
version='1.5.3',
41+
version='1.5.4',
4242
url='https://github.com/carbonblack/cbapi-python',
4343
license='MIT',
4444
author='Carbon Black',

src/cbapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = 'Carbon Black Developer Network'
77
__license__ = 'MIT'
88
__copyright__ = 'Copyright 2019 Carbon Black'
9-
__version__ = '1.5.3'
9+
__version__ = '1.5.4'
1010

1111
# New API as of cbapi 0.9.0
1212
from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI

0 commit comments

Comments
 (0)