Skip to content

Commit

Permalink
Release 0.62.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankC01 committed Jun 8, 2024
1 parent fe770e0 commit 48285bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.62.0] - 2024-06-08
## [0.62.1] - 2024-06-08

### Added

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Python Client SDK for Sui blockchain

## pysui SDK current (github)

**Release-0.62.0**
**Release-0.62.1**

- Supports _SUI 1.27.x RPC API_
- Backwards compatable to _Sui 1.20.x RPC API_
Expand All @@ -26,7 +26,7 @@ See [CHANGELOG](https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md)

## PyPi current

**Release-0.62.0 - Released 2024-06-08**
**Release-0.62.1 - Released 2024-06-08**

- Supports _SUI 1.27.x RPC API_
- Backwards compatable to _Sui 1.20.x RPC API_
Expand Down
2 changes: 1 addition & 1 deletion pysui/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
# -*- coding: utf-8 -*-

# Read in command line and posting to PyPi
__version__ = "0.62.0"
__version__ = "0.62.1"
"""Pysui Version."""
4 changes: 2 additions & 2 deletions samples/cmdsg.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def transaction_execute(
)
# Execute the transaction
handle_result(
txb.client.execute_query(
with_query_node=qn.ExecuteTransaction(
txb.client.execute_query_node(
with_node=qn.ExecuteTransaction(
tx_bytestr=tx_b64, sig_array=[x.value for x in sig_array]
)
)
Expand Down

0 comments on commit 48285bc

Please sign in to comment.