From 270ab7dee28d13d2cfdc7517515014ad4c7fd3c4 Mon Sep 17 00:00:00 2001 From: "Frank V. Castellucci" Date: Sun, 22 Sep 2024 04:05:51 -0400 Subject: [PATCH] Release 0.69.0 --- CHANGELOG.md | 4 +++- README.md | 8 ++++---- pysui/sui/sui_clients/common.py | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffcad94..5b94904 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index e8abb4e..d5238ce 100644 --- a/README.md +++ b/README.md @@ -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/) diff --git a/pysui/sui/sui_clients/common.py b/pysui/sui/sui_clients/common.py index 0d1ce6a..28358ad 100644 --- a/pysui/sui/sui_clients/common.py +++ b/pysui/sui/sui_clients/common.py @@ -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",