Skip to content

Commit ff4f786

Browse files
author
Dan Hertz
committed
bump to 1.3.0
1 parent b24c893 commit ff4f786

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ Changelog
33

44
Here you can see the full list of changes between each Nightfall release.
55

6+
Version 1.3.0
7+
-------------
8+
9+
Released on January 5, 2022
10+
11+
- Added `default_redaction_config` option to text scanning api
12+
613
Version 1.2.0
714
-------------
815

@@ -74,9 +81,9 @@ Released on July 25, 2021
7481

7582
.. warning::
7683
This is a breaking change compared to version 0.5.0, but all users are
77-
reccomended to upgrade to this version. This version represents an
84+
recommended to upgrade to this version. This version represents an
7885
improvement on the previous iteration where instead of handling a list of
79-
dicts, we now handle a single dict with mulitple entries. This simplifies
86+
dicts, we now handle a single dict with multiple entries. This simplifies
8087
the library code and makes the interface much more usable.
8188

8289
The previous version of the SDK required users to pass in a list of dicts.
@@ -122,7 +129,7 @@ Version 0.3.0
122129

123130
Released on June 13, 2021
124131

125-
- Implement basic chunking algorithm to split payloads per the API limts.
132+
- Implement basic chunking algorithm to split payloads per the API limits.
126133

127134
Version 0.2.0
128135
-------------

nightfall/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, key: Optional[str] = None, signing_secret: Optional[str] = No
5151
self.session.mount('https://', HTTPAdapter(max_retries=retries))
5252
self.session.headers = {
5353
"Content-Type": "application/json",
54-
"User-Agent": "nightfall-python-sdk/1.2.0",
54+
"User-Agent": "nightfall-python-sdk/1.3.0",
5555
'Authorization': f'Bearer {self.key}',
5656
}
5757

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def readme():
99

1010
setup(
1111
name="nightfall",
12-
version="1.2.0",
12+
version="1.3.0",
1313
description="Python SDK for Nightfall",
1414
long_description=readme(),
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)