From 203e8d2c345dabee56e31aebf88b706df5aa72e5 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Thu, 24 Feb 2022 13:25:28 +0100 Subject: Bump version to 0.7 because of incompatible Netapp --- src/admin/Cargo.toml | 4 ++-- src/api/Cargo.toml | 8 ++++---- src/garage/Cargo.toml | 16 ++++++++-------- src/model/Cargo.toml | 8 ++++---- src/rpc/Cargo.toml | 6 +++--- src/rpc/system.rs | 2 +- src/table/Cargo.toml | 6 +++--- src/util/Cargo.toml | 2 +- src/web/Cargo.toml | 10 +++++----- 9 files changed, 31 insertions(+), 31 deletions(-) (limited to 'src') diff --git a/src/admin/Cargo.toml b/src/admin/Cargo.toml index 01c16c57..2db4bb08 100644 --- a/src/admin/Cargo.toml +++ b/src/admin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_admin" -version = "0.6.0" +version = "0.7.0" authors = ["Maximilien Richer "] edition = "2018" license = "AGPL-3.0" @@ -13,7 +13,7 @@ path = "lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -garage_util = { version = "0.6.0", path = "../util" } +garage_util = { version = "0.7.0", path = "../util" } hex = "0.4" diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml index f39c6d04..d61a986f 100644 --- a/src/api/Cargo.toml +++ b/src/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_api" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Auvolat "] edition = "2018" license = "AGPL-3.0" @@ -14,9 +14,9 @@ path = "lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -garage_model = { version = "0.6.0", path = "../model" } -garage_table = { version = "0.6.0", path = "../table" } -garage_util = { version = "0.6.0", path = "../util" } +garage_model = { version = "0.7.0", path = "../model" } +garage_table = { version = "0.7.0", path = "../table" } +garage_util = { version = "0.7.0", path = "../util" } base64 = "0.13" bytes = "1.0" diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml index ff0666a6..2f67d418 100644 --- a/src/garage/Cargo.toml +++ b/src/garage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Auvolat "] edition = "2018" license = "AGPL-3.0" @@ -21,13 +21,13 @@ path = "tests/lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -garage_api = { version = "0.6.0", path = "../api" } -garage_model = { version = "0.6.0", path = "../model" } -garage_rpc = { version = "0.6.0", path = "../rpc" } -garage_table = { version = "0.6.0", path = "../table" } -garage_util = { version = "0.6.0", path = "../util" } -garage_web = { version = "0.6.0", path = "../web" } -garage_admin = { version = "0.6.0", path = "../admin" } +garage_api = { version = "0.7.0", path = "../api" } +garage_model = { version = "0.7.0", path = "../model" } +garage_rpc = { version = "0.7.0", path = "../rpc" } +garage_table = { version = "0.7.0", path = "../table" } +garage_util = { version = "0.7.0", path = "../util" } +garage_web = { version = "0.7.0", path = "../web" } +garage_admin = { version = "0.7.0", path = "../admin" } bytes = "1.0" git-version = "0.3.4" diff --git a/src/model/Cargo.toml b/src/model/Cargo.toml index 8083445e..64eae0f4 100644 --- a/src/model/Cargo.toml +++ b/src/model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_model" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Auvolat "] edition = "2018" license = "AGPL-3.0" @@ -14,9 +14,9 @@ path = "lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -garage_rpc = { version = "0.6.0", path = "../rpc" } -garage_table = { version = "0.6.0", path = "../table" } -garage_util = { version = "0.6.0", path = "../util" } +garage_rpc = { version = "0.7.0", path = "../rpc" } +garage_table = { version = "0.7.0", path = "../table" } +garage_util = { version = "0.7.0", path = "../util" } garage_model_050 = { package = "garage_model", version = "0.5.1" } async-trait = "0.1.7" diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml index 72393921..a027f219 100644 --- a/src/rpc/Cargo.toml +++ b/src/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_rpc" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Auvolat "] edition = "2018" license = "AGPL-3.0" @@ -14,8 +14,8 @@ path = "lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -garage_util = { version = "0.6.0", path = "../util" } -garage_admin = { version = "0.6.0", path = "../admin" } +garage_util = { version = "0.7.0", path = "../util" } +garage_admin = { version = "0.7.0", path = "../admin" } arc-swap = "1.0" bytes = "1.0" diff --git a/src/rpc/system.rs b/src/rpc/system.rs index 2123a37f..741f68e2 100644 --- a/src/rpc/system.rs +++ b/src/rpc/system.rs @@ -39,7 +39,7 @@ const STATUS_EXCHANGE_INTERVAL: Duration = Duration::from_secs(10); const PING_TIMEOUT: Duration = Duration::from_secs(2); /// Version tag used for version check upon Netapp connection -pub const GARAGE_VERSION_TAG: u64 = 0x6761726167650006; // garage 0x0006 +pub const GARAGE_VERSION_TAG: u64 = 0x6761726167650007; // garage 0x0007 /// RPC endpoint used for calls related to membership pub const SYSTEM_RPC_PATH: &str = "garage_rpc/membership.rs/SystemRpc"; diff --git a/src/table/Cargo.toml b/src/table/Cargo.toml index bc09ca7c..ed1a213f 100644 --- a/src/table/Cargo.toml +++ b/src/table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_table" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Auvolat "] edition = "2018" license = "AGPL-3.0" @@ -14,8 +14,8 @@ path = "lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -garage_rpc = { version = "0.6.0", path = "../rpc" } -garage_util = { version = "0.6.0", path = "../util" } +garage_rpc = { version = "0.7.0", path = "../rpc" } +garage_util = { version = "0.7.0", path = "../util" } opentelemetry = "0.17" diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml index e1d516de..dfa4e822 100644 --- a/src/util/Cargo.toml +++ b/src/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_util" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Auvolat "] edition = "2018" license = "AGPL-3.0" diff --git a/src/web/Cargo.toml b/src/web/Cargo.toml index 81a8c995..59a1231d 100644 --- a/src/web/Cargo.toml +++ b/src/web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garage_web" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Auvolat ", "Quentin Dufour "] edition = "2018" license = "AGPL-3.0" @@ -14,10 +14,10 @@ path = "lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -garage_api = { version = "0.6.0", path = "../api" } -garage_model = { version = "0.6.0", path = "../model" } -garage_util = { version = "0.6.0", path = "../util" } -garage_table = { version = "0.6.0", path = "../table" } +garage_api = { version = "0.7.0", path = "../api" } +garage_model = { version = "0.7.0", path = "../model" } +garage_util = { version = "0.7.0", path = "../util" } +garage_table = { version = "0.7.0", path = "../table" } err-derive = "0.3" tracing = "0.1.30" -- cgit v1.2.3