Skip to content

Commit 60ad1a9

Browse files
committed
Version Bump
1 parent e4da280 commit 60ad1a9

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2019 Carbon Black
3+
Copyright (c) 2016-2021 Carbon Black
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

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.7.2**
3+
**Latest Version: 1.7.3**
44

55
_**Notice**: The Carbon Black Cloud portion of CBAPI has moved to https://github.com/carbonblack/carbon-black-cloud-sdk-python. Any future development and bug fixes for Carbon Black Cloud APIs will be made there. Carbon Black EDR and App Control will remain supported at CBAPI_
66

docs/changelog.rst

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@ CbAPI Changelog
22
===============
33
.. top-of-changelog (DO NOT REMOVE THIS COMMENT)
44
5+
CbAPI 1.7.3 - Released January 15, 2021
6+
------------------------------------
7+
8+
Updates
9+
10+
* General
11+
* Fix resource warnings regarding unclosed file object
12+
* Notice added to readme for Carbon Black Cloud features moving to Carbon Black Cloud SDK repo
13+
* Carbon Black Cloud
14+
* Increase default rows of alerts to 100
15+
* Add get_auditlogs function to API object
16+
* CB Threathunter
17+
* Fix typo in process query
18+
* Bump lxml from 4.4.1 to 4.6.2 for Threat Intelligence example
19+
* CB Response
20+
* Add Sensor Builds
21+
* Alert.set_ignored() and AlertQuery.set_ignored():
22+
* Added a docstring to specify what happens with this method
23+
* Modified the payload keys based on manual testing
24+
* Alert.change_status() and AlertQuery.change_status():
25+
* Added a status check to ensure it's a valid status
26+
27+
528
CbAPI 1.7.2 - Released July 22, 2020
629
------------------------------------
730

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = u'cbapi'
54-
copyright = u'2016-2020, VMware Carbon Black'
54+
copyright = u'2016-2021, VMware Carbon Black'
5555
author = u'Carbon Black Developer Network'
5656

5757
# The version info for the project you're documenting, acts as replacement for
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'1.7'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.7.2'
64+
release = u'1.7.3'
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
@@ -41,7 +41,7 @@
4141

4242
setup(
4343
name='cbapi',
44-
version='1.7.2',
44+
version='1.7.3',
4545
url='https://github.com/carbonblack/cbapi-python',
4646
license='MIT',
4747
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 2018-2020 VMware Carbon Black'
9-
__version__ = '1.7.2'
9+
__version__ = '1.7.3'
1010

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

0 commit comments

Comments
 (0)