diff --git a/lightspark/CHANGELOG.md b/lightspark/CHANGELOG.md index 9eec30a..037143a 100644 --- a/lightspark/CHANGELOG.md +++ b/lightspark/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +# v0.10.0 +- Add extra params to `create_uma_invoice` and `pay_uma_invoice` for analytics. + # v0.9.2 - RSA signing should be PSS signatures. diff --git a/lightspark/Cargo.toml b/lightspark/Cargo.toml index 0ef1491..30754f2 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.9.2" +version = "0.10.0" 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 1b58237..ce2f52d 100644 --- a/lightspark/README.md +++ b/lightspark/README.md @@ -1,8 +1,8 @@ -# Lightspark Rust SDK - v0.9.2 +# Lightspark Rust SDK - v0.10.0 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.9.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.*** +***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.*** ## Documentation diff --git a/lightspark/src/lib.rs b/lightspark/src/lib.rs index 5cfb631..2512339 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.9.2"; +pub const VERSION: &str = "0.10.0"; #[cfg(feature = "client")] pub mod client;