Skip to content

Commit

Permalink
Fix comment and bump version, add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Thoralf-M committed Sep 19, 2023
1 parent ba38c55 commit 8930111
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions bindings/python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security -->

## 1.0.3 - 2023-09-19

### Fixed

- Wheel upload;

## 1.0.2 - 2023-09-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota-sdk-python"
version = "1.0.2"
version = "1.0.3"
authors = ["IOTA Stiftung"]
edition = "2021"
description = "Python bindings for the IOTA SDK library"
Expand Down
4 changes: 3 additions & 1 deletion bindings/python/iota_sdk/types/send_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ class SendParams():
address: The address to send to.
amount: The amount to send.
returnAddress: The address to return the funds to if not claimed.
expiration: The expiration timestamp until funds can be claimed.
expiration: Expiration in seconds, after which the output will be available for the sender again, if not spent by the
receiver already. The expiration will only be used if one is necessary given the provided amount. If an
expiration is needed but not provided, it will default to one day.
"""
address: str
amount: str
Expand Down
1 change: 1 addition & 0 deletions bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "maturin"

[project]
name = "iota-sdk"
dependencies = ["dacite >= 1.8.1", "pyhumps >= 3.8.0"]

[tool.maturin]
python-packages = ["iota_sdk"]
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_py_version_cfgs():

setup(
name="iota_sdk",
version="1.0.2",
version="1.0.3",
classifiers=[
"License :: SPDX-License-Identifier :: Apache-2.0",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 8930111

Please sign in to comment.