diff --git a/lightspark/CHANGELOG.md b/lightspark/CHANGELOG.md index 037143a..3adf4d9 100644 --- a/lightspark/CHANGELOG.md +++ b/lightspark/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +# v0.10.1 +- Fix: Removes default params on graphql mutation `PayUmaInvoice` + # v0.10.0 - Add extra params to `create_uma_invoice` and `pay_uma_invoice` for analytics. diff --git a/lightspark/Cargo.toml b/lightspark/Cargo.toml index 30754f2..beb8fda 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.0" +version = "0.10.1" 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 ce2f52d..80bb529 100644 --- a/lightspark/README.md +++ b/lightspark/README.md @@ -1,8 +1,8 @@ -# Lightspark Rust SDK - v0.10.0 +# Lightspark Rust SDK - v0.10.1 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.0 (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.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.*** ## Documentation diff --git a/lightspark/src/lib.rs b/lightspark/src/lib.rs index 2512339..80c43c7 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.0"; +pub const VERSION: &str = "0.10.1"; #[cfg(feature = "client")] pub mod client;