Skip to content

Commit 3cfd681

Browse files
author
Dan Hertz
committed
Bump to version 1.1.1
1 parent 5397352 commit 3cfd681

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

CHANGELOG

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Changelog
33

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

6+
Version 1.1.1
7+
-------------
8+
9+
Released on November 29, 2021
10+
11+
- Add CONTRIBUTING, CODEOWNERS and update README
12+
- Update User-Agent header
13+
614
Version 1.1.0
715
-------------
816

@@ -52,19 +60,19 @@ Version 0.6.0
5260

5361
Released on July 25, 2021
5462

55-
- Update scan and chunking interface to handle dict with multiple items
63+
- Update scan and chunking interface to handle dict with multiple items
5664
instead of list of dicts.
5765

5866
.. warning::
59-
This is a breaking change compared to version 0.5.0, but all users are
67+
This is a breaking change compared to version 0.5.0, but all users are
6068
reccomended to upgrade to this version. This version represents an
6169
improvement on the previous iteration where instead of handling a list of
6270
dicts, we now handle a single dict with mulitple entries. This simplifies
6371
the library code and makes the interface much more usable.
6472

65-
The previous version of the SDK required users to pass in a list of dicts.
66-
We now require users to pass in a single dict with multiple entries.
67-
``nightfall.scan([{'id': 'string}])`` should now be
73+
The previous version of the SDK required users to pass in a list of dicts.
74+
We now require users to pass in a single dict with multiple entries.
75+
``nightfall.scan([{'id': 'string}])`` should now be
6876
``nightfall.scan({'id': 'string'})``.
6977

7078
Version 0.5.0
@@ -92,8 +100,8 @@ Version 0.4.0
92100
Released on June 20, 2021
93101

94102
- Add debug logs to Nightfall module
95-
- Change primary class name from ``Api`` to ``Nightfall`` to make things a bit
96-
more clear when this library is used in other programs and allow ``from
103+
- Change primary class name from ``Api`` to ``Nightfall`` to make things a bit
104+
more clear when this library is used in other programs and allow ``from
97105
nightfall import Nightfall``
98106

99107
.. warning::

nightfall/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(self, key: Optional[str] = None, signing_secret: Optional[str] = No
4545

4646
self._headers = {
4747
"Content-Type": "application/json",
48-
"User-Agent": "nightfall-python-sdk/1.1.0",
48+
"User-Agent": "nightfall-python-sdk/1.1.1",
4949
'Authorization': f'Bearer {self.key}',
5050
}
5151
self.signing_secret = signing_secret

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.1.0",
12+
version="1.1.1",
1313
description="Python SDK for Nightfall",
1414
long_description=readme(),
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)