From 85661709e34220324830151f1244aa72f0032221 Mon Sep 17 00:00:00 2001 From: G8XSU <3442979+G8XSU@users.noreply.github.com> Date: Thu, 22 Aug 2024 17:00:07 -0700 Subject: [PATCH] Minor Version Release 0.3.0 Major Changes include: * Signature change in vss-client constructor. (in #31 ) * Vss-client can now also return AuthError if AuthException is returned from server. (#30) * Adds VssHeaderProvider, can be used for auth and request signing.(#31) * Adds LnurlAuthToJwtProvider, provides LnUrl based JWT auth. (#26) * Adds KeyObfuscator, to provide client-side key obfuscation. (#32) * Package now has enforced MSRV of 1.63.0. (#19) This is a minor version bump because there are non-backward compatible changes in vss-client usage. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f4c97db..5bd7cfe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vss-client" -version = "0.2.2" +version = "0.3.0" rust-version = "1.63.0" license = "MIT OR Apache-2.0" edition = "2021"