diff --git a/CHANGELOG.md b/CHANGELOG.md index 7687e18..da4a718 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,13 @@ -# `0.6.0-beta.2` +# `0.6.0` -- biscuit-auth 6.0.0-beta.3 +- biscuit-auth 6.0.0 - dedicated prefix for private keys -- read secp256r1 keys in datalog parameters -- support for PEM keys -- improve CLI documentation - -# `0.6.0-beta.1` - -- biscuit-auth 6.0.0-beta.1 - biscuit-datalog v3.3 support - ECDSA signatures support - policy snapshots support +- read secp256r1 keys in datalog parameters +- support for PEM keys +- improve CLI documentation - display datalog version in blocks # `0.5.0` diff --git a/Cargo.lock b/Cargo.lock index 3804173..da89b8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,9 +69,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "biscuit-auth" -version = "6.0.0-beta.3" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "336ffc076d302968607866acb85378ed77066289ce1868aa7770c0f3f6e83e5c" +checksum = "d5884fc86b3e21f5649ef4326e17ef729b3096e6502deaf13db7b7fb05bb992b" dependencies = [ "base64", "biscuit-parser", @@ -99,7 +99,7 @@ dependencies = [ [[package]] name = "biscuit-cli" -version = "0.6.0-beta.2" +version = "0.6.0" dependencies = [ "anyhow", "atty", @@ -118,9 +118,9 @@ dependencies = [ [[package]] name = "biscuit-parser" -version = "0.2.0-beta.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6f2eb85dcc822200621ce077b9382453d28ddd6a55e7a97bdb592370d2d440" +checksum = "9d7cafdbc8c30e1f0fb87df7161bec77f6f00da652cc33f102b0f95bd1cbc0fa" dependencies = [ "hex", "nom", @@ -133,9 +133,9 @@ dependencies = [ [[package]] name = "biscuit-quote" -version = "0.3.0-beta.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12c624b1cf44110708a62b63341b17c37c33fcdd3cce89b501a115af3454dcf8" +checksum = "49d2332c742a07a846f1fb2760e58a0ee60f2bc30987046fcea816b40630335a" dependencies = [ "biscuit-parser", "proc-macro-error2", diff --git a/Cargo.toml b/Cargo.toml index 058fbf9..76949ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "biscuit-cli" -version = "0.6.0-beta.2" +version = "0.6.0" description = "a CLI to manipulate biscuit tokens" authors = ["Clement Delafargue "] edition = "2018" @@ -17,7 +17,7 @@ path = "src/main.rs" [dependencies] atty = "0.2.14" -biscuit-auth = { version = "6.0.0-beta.3", features = ["serde-error", "pem"] } +biscuit-auth = { version = "6.0.0", features = ["serde-error", "pem"] } clap = { version = "^3.0", features = ["color", "derive"] } chrono = "^0.4" hex = "0.4.3"