Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]
## [5.1.3] - 2025-02-25
- Fix `extra_kwargs` handling for bank statements `wait_for_results`

## [5.1.2] - 2025-01-28
- Fix `extra_kwargs` handling for batches `wait_for_results`

## [5.1.1] - 2024-12-03
- Webhooks list no longer requires cursor/limit

## [5.1.0] - 2024-12-02
- Add `AsyncSDK` and corresponding async methods

## [5.0.2] - 2024-11-07
Expand Down
2 changes: 1 addition & 1 deletion ntropy_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "5.1.2"
__version__ = "5.1.3"

from typing import TYPE_CHECKING, Optional

Expand Down
2 changes: 1 addition & 1 deletion ntropy_sdk/bank_statements.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def wait_for_results(
start_time = time.monotonic()
stmt = None
while time.monotonic() - start_time < timeout:
stmt = self._sdk.bank_statements.get(id=id)
stmt = self._sdk.bank_statements.get(id=id, **extra_kwargs)
if stmt.status in finish_statuses:
break
time.sleep(poll_interval)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.1.2
current_version = 5.1.3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<pre>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/ntropy-network/ntropy-sdk",
version="5.1.2",
version="5.1.3",
zip_safe=False,
)
Loading