From d7775e661ebb9e4a83f4d2db1dab376dd47e8986 Mon Sep 17 00:00:00 2001 From: kkawula <57270771+kkawula@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:15:18 +0200 Subject: [PATCH 1/4] v0.24.1 --- docs/migration_guide.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/migration_guide.rst b/docs/migration_guide.rst index 4d63e4948..d45d7459d 100644 --- a/docs/migration_guide.rst +++ b/docs/migration_guide.rst @@ -1,6 +1,17 @@ Migration guide =============== +****************************** +0.24.1 Migration guide +****************************** +This version contains a quick fix to ABIv2. Due to new release of compiler, u96 is now compiled to `BoundedInt` in ABI. + +0.24.1 Minor changes +-------------------- + +1. Fixed parsing ABIv2 that contains u96 data type. +2. Fixed `l1_address` deserialization in `L2toL1MessageSchema`. + ****************************** 0.24.0 Migration guide ****************************** From dac7760f5c638d4bd6c93b9124e3c07b426c0533 Mon Sep 17 00:00:00 2001 From: kkawula <57270771+kkawula@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:19:11 +0200 Subject: [PATCH 2/4] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c9033c76d..19aaa7afe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "starknet-py" -version = "0.24.0" +version = "0.24.1" description = "A python SDK for Starknet" authors = ["Tomasz Rejowski ", "Jakub Ptak "] include = ["starknet_py", "starknet_py/utils/crypto/libcrypto_c_exports.*"] From 9b1b7900a3c326ca0dd32afa1eb892a7fc0fc769 Mon Sep 17 00:00:00 2001 From: kkawula <57270771+kkawula@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:27:59 +0200 Subject: [PATCH 3/4] Update docs/migration_guide.rst Co-authored-by: ddoktorski <45050160+ddoktorski@users.noreply.github.com> --- docs/migration_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migration_guide.rst b/docs/migration_guide.rst index d45d7459d..4e8f7e39a 100644 --- a/docs/migration_guide.rst +++ b/docs/migration_guide.rst @@ -9,7 +9,7 @@ This version contains a quick fix to ABIv2. Due to new release of compiler, u96 0.24.1 Minor changes -------------------- -1. Fixed parsing ABIv2 that contains u96 data type. +1. Fixed parsing ABI that contains `u96` data type. 2. Fixed `l1_address` deserialization in `L2toL1MessageSchema`. ****************************** From cd8744c84c4a2ae637bb2498b008f1491dfbe399 Mon Sep 17 00:00:00 2001 From: kkawula <57270771+kkawula@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:31:15 +0200 Subject: [PATCH 4/4] [skip ci] Update docs for Migration guide v0.24.1 --- docs/migration_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migration_guide.rst b/docs/migration_guide.rst index 4e8f7e39a..bd70fc916 100644 --- a/docs/migration_guide.rst +++ b/docs/migration_guide.rst @@ -4,7 +4,7 @@ Migration guide ****************************** 0.24.1 Migration guide ****************************** -This version contains a quick fix to ABIv2. Due to new release of compiler, u96 is now compiled to `BoundedInt` in ABI. +This version contains a quick fix to parsing ABI for Cairo v2 contracts. Due to new release of compiler, `u96` is now compiled to `BoundedInt` in ABI. 0.24.1 Minor changes --------------------