From 4b29241876d29a406396928188a9944d0ad7d368 Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Mon, 15 May 2017 14:53:07 +0800 Subject: [PATCH] Version 0.0.4 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90417166..448c7a1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 0.0.4 (2017-05-15) + +Update dependency to `ring` 0.9.4 so that different versions of `ring` can no longer be used in a Rust build. + +There are no new features or API change. + ## Version 0.0.3 (2017-04-23) Minor bug fix release. Fixed incorrect ECDSA signature verification. diff --git a/Cargo.toml b/Cargo.toml index cceb73e3..a8cb2e97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "biscuit" -version = "0.0.3" +version = "0.0.4" authors = ["Yong Wen Chua ", "Vincent Prouillet "] license = "MIT" readme = "README.md" diff --git a/README.md b/README.md index 8355de99..25518a77 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This was based off [`Keats/rust-jwt`](https://github.com/Keats/rust-jwt). Add the following to Cargo.toml: ```toml -biscuit = "0.0.3" +biscuit = "0.0.4" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index e9a42d7c..a485ef07 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ //! Add the following to Cargo.toml: //! //! ```toml -//! biscuit = "0.0.3" +//! biscuit = "0.0.4" //! ``` //! //! To use the latest `master` branch, for example: