chore(Cargo): Bump version to 1.0.0
This library has been running in a production codebase for a while and can be considered stable. There is a minor breaking change between this version and the previous 0.1.0 in that the `ValidationError` enum has gained additional variants.
This commit is contained in:
parent
cc1ee9c81d
commit
17060cece3
2 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "alcoholic_jwt"
|
||||
description = "Library for validation of RS256 JWTs"
|
||||
version = "0.1.2"
|
||||
version = "1.0.0"
|
||||
authors = ["Vincent Ambo <vincent@aprila.no>"]
|
||||
keywords = ["jwt", "token", "jwks"]
|
||||
categories = ["authentication"]
|
||||
|
|
|
@ -88,7 +88,6 @@ use std::time::{UNIX_EPOCH, Duration, SystemTime};
|
|||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
||||
|
||||
/// URL-safe character set without padding that allows trailing bits,
|
||||
/// which appear in some JWT implementations.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue