diff --git a/lightspark/CHANGELOG.md b/lightspark/CHANGELOG.md index 6af05a9..c864d3e 100644 --- a/lightspark/CHANGELOG.md +++ b/lightspark/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +# v0.8.0 + +- Add a function for cancelling unpaid invoices. +- Add UMA invites support. + # v0.7.2 - Add preimage to OutgoingPayment. diff --git a/lightspark/Cargo.toml b/lightspark/Cargo.toml index d776451..6a09484 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.7.2" +version = "0.8.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 53faced..00fd42f 100644 --- a/lightspark/README.md +++ b/lightspark/README.md @@ -1,8 +1,8 @@ -# Lightspark Rust SDK - v0.7.1 +# Lightspark Rust SDK - v0.8.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.7.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.8.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 469bb1c..1d2c780 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.7.2"; +pub const VERSION: &str = "0.8.0"; #[cfg(feature = "client")] pub mod client;