From 4837208c9a4b8a3a0a7229c4895bd5332b8b8dc6 Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Mon, 27 Mar 2023 19:44:04 +0200 Subject: [PATCH] biscuit-auth v3.0.0 (#144) * biscuit-parser v0.1.0 * biscuit-quote v0.2.0 * biscuit-auth v3.0.0 --- biscuit-auth/Cargo.toml | 6 +++--- biscuit-parser/Cargo.toml | 2 +- biscuit-quote/Cargo.toml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/biscuit-auth/Cargo.toml b/biscuit-auth/Cargo.toml index 39fb98fd..139d4965 100644 --- a/biscuit-auth/Cargo.toml +++ b/biscuit-auth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "biscuit-auth" -version = "3.0.0-alpha4" +version = "3.0.0" description = "an authorization token with decentralized verification and offline attenuation" authors = ["Geoffroy Couprie "] edition = "2018" @@ -42,8 +42,8 @@ serde = { version = "1.0.132", optional = true, features = ["derive"] } getrandom = { version = "0.1.16" } time = { version = "0.3.7", features = ["formatting", "parsing"] } uuid = { version = "1", optional = true } -biscuit-parser = { version = "0.1.0-alpha4", path = "../biscuit-parser" } -biscuit-quote = { version = "0.2.0-alpha5", optional = true, path = "../biscuit-quote" } +biscuit-parser = { version = "0.1.0", path = "../biscuit-parser" } +biscuit-quote = { version = "0.2.0", optional = true, path = "../biscuit-quote" } [dev-dependencies] diff --git a/biscuit-parser/Cargo.toml b/biscuit-parser/Cargo.toml index 093c6d1d..c7afd616 100644 --- a/biscuit-parser/Cargo.toml +++ b/biscuit-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "biscuit-parser" -version = "0.1.0-alpha4" +version = "0.1.0" edition = "2021" authors = ["Clément Delafargue ", "Geoffroy Couprie "] description = "Datalog parser used in the biscuit-auth and biscuit-quote crates" diff --git a/biscuit-quote/Cargo.toml b/biscuit-quote/Cargo.toml index ff5a6cb5..d332de42 100644 --- a/biscuit-quote/Cargo.toml +++ b/biscuit-quote/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "biscuit-quote" -version = "0.2.0-alpha5" +version = "0.2.0" edition = "2021" description = "macros for compile time datalog parsing for Biscuit authorization tokens" authors = ["Clément Delafargue ", "Geoffroy Couprie "] @@ -10,12 +10,12 @@ license = "Apache-2.0" proc-macro = true [dependencies] -biscuit-parser = { path = "../biscuit-parser", features = ["datalog-macro"], version = "0.1.0-alpha4" } +biscuit-parser = { path = "../biscuit-parser", features = ["datalog-macro"], version = "0.1.0" } proc-macro2 = "1" quote = "1.0.14" syn = { version = "1.0.85", features = ["full", "extra-traits"] } proc-macro-error = "1.0" [dev-dependencies] -biscuit-auth = { path = "../biscuit-auth", version = "3.0.0-alpha4", features = ["datalog-macro"] } +biscuit-auth = { path = "../biscuit-auth", version = "3.0.0", features = ["datalog-macro"] } hex = "0.4.3"