From 9fb8b4d1443c54a113d937896eee0e4965f19cee Mon Sep 17 00:00:00 2001 From: shreyav Date: Mon, 22 Sep 2025 14:59:14 -0700 Subject: [PATCH] Bump version to 0.10.2 --- lightspark/CHANGELOG.md | 3 +++ lightspark/Cargo.toml | 2 +- lightspark/README.md | 4 ++-- lightspark/src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/lightspark/CHANGELOG.md b/lightspark/CHANGELOG.md index 3adf4d9..26730e2 100644 --- a/lightspark/CHANGELOG.md +++ b/lightspark/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +# v0.10.2 +- Fix: Improve webhook request validation and test coverage + # v0.10.1 - Fix: Removes default params on graphql mutation `PayUmaInvoice` diff --git a/lightspark/Cargo.toml b/lightspark/Cargo.toml index 8165664..8113c3c 100644 --- a/lightspark/Cargo.toml +++ b/lightspark/Cargo.toml @@ -2,7 +2,7 @@ name = "lightspark" description = "Lightspark Rust SDK" authors = ["Lightspark Group, Inc. "] -version = "0.10.1" +version = "0.10.2" edition = "2021" documentation = "https://docs.lightspark.com/lightspark-sdk/getting-started?language=Rust" homepage = "https://www.lightspark.com/" diff --git a/lightspark/README.md b/lightspark/README.md index 80bb529..74fdaa3 100644 --- a/lightspark/README.md +++ b/lightspark/README.md @@ -1,8 +1,8 @@ -# Lightspark Rust SDK - v0.10.1 +# Lightspark Rust SDK - v0.10.2 The Lightspark Rust SDK provides a convenient way to interact with the Lightspark services from applications written in the Rust language. -***WARNING: This SDK is in version 0.10.1 (active development). It means that its APIs may not be fully stable. Please expect that changes to the APIs may happen until we move to v1.0.0.*** +***WARNING: This SDK is in version 0.10.2 (active development). It means that its APIs may not be fully stable. Please expect that changes to the APIs may happen until we move to v1.0.0.*** ## Documentation diff --git a/lightspark/src/lib.rs b/lightspark/src/lib.rs index 80c43c7..df22189 100644 --- a/lightspark/src/lib.rs +++ b/lightspark/src/lib.rs @@ -28,7 +28,7 @@ //! See more examples in examples/example.rs //! /// The version of this library. -pub const VERSION: &str = "0.10.1"; +pub const VERSION: &str = "0.10.2"; #[cfg(feature = "client")] pub mod client;