File tree 5 files changed +14
-4
lines changed
5 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## [ 0.10.3] - 2024-11-07
6
+
7
+ ### Added
8
+
9
+ - Adds ` source ` and ` source_version ` to correlation header for better observability.
10
+
11
+ ### Fixed
12
+
13
+ - Fix bug in ` WalletAddress ` ` invoke_contract ` that failed to properly handle ` amount ` with type ` str `
14
+
5
15
## [ 0.10.2] - 2024-11-06
6
16
7
17
### Added
Original file line number Diff line number Diff line change 1
- __version__ = "0.10.2 "
1
+ __version__ = "0.10.3 "
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ def invoke_contract(
176
176
normalized_amount = Decimal (amount ) if amount else Decimal ("0" )
177
177
178
178
if amount and asset_id :
179
- self ._ensure_sufficient_balance (amount , asset_id )
179
+ self ._ensure_sufficient_balance (normalized_amount , asset_id )
180
180
181
181
invocation = ContractInvocation .create (
182
182
address_id = self .address_id ,
Original file line number Diff line number Diff line change 14
14
15
15
project = 'CDP SDK'
16
16
author = 'Coinbase Developer Platform'
17
- release = '0.10.2 '
17
+ release = '0.10.3 '
18
18
19
19
# -- General configuration ---------------------------------------------------
20
20
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " cdp-sdk"
3
- version = " 0.10.2 "
3
+ version = " 0.10.3 "
4
4
description = " CDP Python SDK"
5
5
readme = " README.md"
6
6
authors = [{
name =
" John Peterson" ,
email =
" [email protected] " }]
You can’t perform that action at this time.
0 commit comments