Skip to content

Commit

Permalink
Merge pull request #531 from carbonblack/release-1.5.5
Browse files Browse the repository at this point in the history
Release 1.5.5 - Merge to Master
  • Loading branch information
abowersox-cb authored Jul 11, 2024
2 parents 1c754c9 + a2d8088 commit 898654e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Carbon Black Cloud Python SDK

**Latest Version:** 1.5.4
**Latest Version:** 1.5.5
<br>
**Release Date:** July 10, 2024
**Release Date:** July 11, 2024

[![Coverage Status](https://coveralls.io/repos/github/carbonblack/carbon-black-cloud-sdk-python/badge.svg?t=Id6Baf)](https://coveralls.io/github/carbonblack/carbon-black-cloud-sdk-python)
[![Codeship Status for carbonblack/carbon-black-cloud-sdk-python](https://app.codeship.com/projects/9e55a370-a772-0138-aae4-129773225755/status?branch=develop)](https://app.codeship.com/projects/402767)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.4
1.5.5
9 changes: 8 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,19 @@
Changelog
=========

CBC SDK 1.5.5 - Released July 11, 2024
--------------------------------------

Bug fixes:

* Updated dependencies to ensure ``backports-datetime-fromisoformat`` is installed correctly.

CBC SDK 1.5.4 - Released July 10, 2024
--------------------------------------

Bug Fixes:

* Fixed dependency on backports-datetime-fromisoformat for Python 3.11 and later.
* Fixed dependency on ``backports-datetime-fromisoformat`` for Python 3.11 and later.
* Fixed a bug affecting the ability to access alert attributes with array syntax.

CBC SDK 1.5.3 - Released June 27, 2024
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Developer Relations'

# The full version, including alpha/beta/rc tags
release = '1.5.4'
release = '1.5.5'


# -- General configuration ---------------------------------------------------
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Carbon Black Cloud Python SDK"""

from setuptools import setup
import sys
import os

packages = [
Expand All @@ -25,6 +24,7 @@
'jsonschema',
"keyring;platform_system=='Darwin'",
'boto3',
"backports-datetime-fromisoformat==2.0.1; python_version < '3.11'",
]

extras_require = {
Expand All @@ -41,11 +41,6 @@
]
}

if sys.version_info < (3, 0):
install_requires.extend(['futures'])
if sys.version_info < (3, 11):
install_requires.extend(['backports-datetime-fromisoformat==2.0.1'])


def read(fname):
"""Process files for configuration"""
Expand Down
2 changes: 1 addition & 1 deletion src/cbc_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
__author__ = 'Carbon Black Developer Network'
__license__ = 'MIT'
__copyright__ = 'Copyright 2020-2024 Broadcom Inc. Carbon Black'
__version__ = '1.5.4'
__version__ = '1.5.5'

from .rest_api import CBCloudAPI
from .cache import lru

0 comments on commit 898654e

Please sign in to comment.