Skip to content

Commit

Permalink
Release 0.69.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankC01 committed Sep 22, 2024
1 parent 9986f1d commit 270ab7d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 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.69.0] - Unpublished
## [0.69.0] - 2024-09-22

### Added

Expand All @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Bump version 0.69.0
- GraphQL Schema updates for fields in `serviceConfig`
- Validate with 1.35.0 JSON RPC Schema
- Validate with 1.34.0 GraphQL Schema

### Removed

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

**Release-0.69.0**

- Supports _SUI 1.34.x RPC API_, _SUI 1.34.x GRAPHQL (devnet)_
- Supports _SUI 1.35.x RPC API_, _SUI 1.34.x GRAPHQL (devnet)_
- Backwards compatable to _Sui 1.29.x RPC API_

See [CHANGELOG](https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md)

## PyPi current

**Release-0.68.0 - Released 2024-09-14**
**Release-0.68.0 - Released 2024-09-22**

**_BREAKING CHANGES to GraphQL multi-schema support and removal of legacy samples_**

- Supports _SUI 1.33.x RPC API_ and _SUI 1.33.x GRAPHQL_
- Backwards compatable to _Sui 1.28.x RPC API_ and _2024.7.0 GraphQL schema_
- Supports _SUI 1.35.x RPC API_ and _SUI 1.34.x GRAPHQL_
- Backwards compatable to _Sui 1.28.x RPC API_ and _1.33.2 GraphQL schema_

- [Latest PyPi Version](https://pypi.org/project/pysui/)

Expand Down
2 changes: 1 addition & 1 deletion pysui/sui/sui_clients/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class ClientMixin(Provider):
"""

_RPC_MINIMAL_VERSION: str = "1.29.0"
_RPC_REQUIRED_VERSION: str = "1.34.0"
_RPC_REQUIRED_VERSION: str = "1.35.0"

@versionchanged(
version="0.26.1",
Expand Down

0 comments on commit 270ab7d

Please sign in to comment.