From 96cede85d2bd0f8981c681cef955859cb490ed69 Mon Sep 17 00:00:00 2001 From: yoshidan Date: Sat, 14 Oct 2023 23:13:30 +0900 Subject: [PATCH 1/2] update version --- Cargo.toml | 1 + bigquery/Cargo.toml | 6 +++--- foundation/auth/Cargo.toml | 2 +- foundation/gax/Cargo.toml | 2 +- foundation/longrunning/Cargo.toml | 4 ++-- foundation/metadata/Cargo.toml | 2 +- pubsub/Cargo.toml | 6 +++--- spanner-derive/Cargo.toml | 2 +- spanner/Cargo.toml | 8 ++++---- storage/Cargo.toml | 4 ++-- 10 files changed, 19 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 517348ce..1aeccad1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "foundation/token", "foundation/metadata", diff --git a/bigquery/Cargo.toml b/bigquery/Cargo.toml index feb5471c..87cb6b8b 100644 --- a/bigquery/Cargo.toml +++ b/bigquery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-bigquery" -version = "0.4.1" +version = "0.4.2" edition = "2021" authors = ["yoshidan "] repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery" @@ -14,7 +14,7 @@ documentation = "https://docs.rs/google-cloud-bigquery/latest/google_cloud_bigqu async-trait = "0.1" google-cloud-token = { version = "0.1.1", path = "../foundation/token" } google-cloud-googleapis = { version="0.11.0", path = "../googleapis", features=["bigquery"]} -google-cloud-gax = { version = "0.15.0", path = "../foundation/gax"} +google-cloud-gax = { version = "0.15.1", path = "../foundation/gax"} thiserror = "1.0" tracing = "0.1" reqwest = { version = "0.11", features = ["json", "stream", "multipart"], default-features = false } @@ -28,7 +28,7 @@ bigdecimal = { version="0.3", features=["serde"] } num-bigint = "0.4" backon = "0.4" -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] } diff --git a/foundation/auth/Cargo.toml b/foundation/auth/Cargo.toml index 05d51e3a..6fdd1a91 100644 --- a/foundation/auth/Cargo.toml +++ b/foundation/auth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-auth" -version = "0.12.0" +version = "0.13.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/auth" diff --git a/foundation/gax/Cargo.toml b/foundation/gax/Cargo.toml index 67931b71..c3177c0b 100644 --- a/foundation/gax/Cargo.toml +++ b/foundation/gax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-gax" -version = "0.15.0" +version = "0.15.1" authors = ["yoshidan "] edition = "2018" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax" diff --git a/foundation/longrunning/Cargo.toml b/foundation/longrunning/Cargo.toml index 43bcd83c..9a7392f8 100644 --- a/foundation/longrunning/Cargo.toml +++ b/foundation/longrunning/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-longrunning" -version = "0.15.2" +version = "0.15.3" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning" @@ -11,6 +11,6 @@ description = "Google Cloud Platform longrunning library." [dependencies] google-cloud-googleapis = { version = "0.11.0", path = "../../googleapis" } -google-cloud-gax = { version = "0.15.0", path = "../gax" } +google-cloud-gax = { version = "0.15.1", path = "../gax" } tonic = { version = "0.9", features = ["tls", "prost"] } prost = "0.11" diff --git a/foundation/metadata/Cargo.toml b/foundation/metadata/Cargo.toml index c9d8684e..c42dc7e5 100644 --- a/foundation/metadata/Cargo.toml +++ b/foundation/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-metadata" -version = "0.3.2" +version = "0.3.3" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/metadata" diff --git a/pubsub/Cargo.toml b/pubsub/Cargo.toml index c6d2e8eb..3b3848c1 100644 --- a/pubsub/Cargo.toml +++ b/pubsub/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-pubsub" -version = "0.20.0" +version = "0.20.1" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub" @@ -20,10 +20,10 @@ thiserror = "1.0" tokio-util = "0.7" google-cloud-token = { version = "0.1.1", path = "../foundation/token" } -google-cloud-gax = { version = "0.15.0", path = "../foundation/gax" } +google-cloud-gax = { version = "0.15.1", path = "../foundation/gax" } google-cloud-googleapis = { version = "0.11.0", path = "../googleapis", features = ["pubsub"]} -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] } diff --git a/spanner-derive/Cargo.toml b/spanner-derive/Cargo.toml index c82a9a8f..1b8d739c 100644 --- a/spanner-derive/Cargo.toml +++ b/spanner-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-spanner-derive" -version = "0.1.0" +version = "0.1.1" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/macro/spanner" diff --git a/spanner/Cargo.toml b/spanner/Cargo.toml index 53bb7381..55fb6472 100644 --- a/spanner/Cargo.toml +++ b/spanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-spanner" -version = "0.23.1" +version = "0.23.2" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner" @@ -24,11 +24,11 @@ tokio-util = "0.7" bigdecimal = { version="0.3", features=["serde"] } google-cloud-token = { version = "0.1.1", path = "../foundation/token" } -google-cloud-longrunning = { version = "0.15.2", path = "../foundation/longrunning" } -google-cloud-gax = { version = "0.15.0", path = "../foundation/gax" } +google-cloud-longrunning = { version = "0.15.3", path = "../foundation/longrunning" } +google-cloud-gax = { version = "0.15.1", path = "../foundation/gax" } google-cloud-googleapis = { version = "0.11.0", path = "../googleapis", features = ["spanner"]} -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] } diff --git a/storage/Cargo.toml b/storage/Cargo.toml index b58497eb..2a0dcb80 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-storage" -version = "0.13.1" +version = "0.13.2" edition = "2021" authors = ["yoshidan "] repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage" @@ -33,7 +33,7 @@ futures-util = "0.3" bytes = "1.5" google-cloud-metadata = { optional = true, version = "0.3", path = "../foundation/metadata" } -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] } From ad5ff527eb6f3ae582bee38f8f4869213c2b884a Mon Sep 17 00:00:00 2001 From: yoshidan Date: Sun, 15 Oct 2023 10:48:41 +0900 Subject: [PATCH 2/2] update minor version --- bigquery/Cargo.toml | 4 ++-- foundation/auth/Cargo.toml | 2 +- foundation/gax/Cargo.toml | 2 +- foundation/longrunning/Cargo.toml | 4 ++-- foundation/metadata/Cargo.toml | 2 +- pubsub/Cargo.toml | 4 ++-- spanner-derive/Cargo.toml | 2 +- spanner/Cargo.toml | 6 +++--- storage/Cargo.toml | 4 ++-- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/bigquery/Cargo.toml b/bigquery/Cargo.toml index 87cb6b8b..f51032ce 100644 --- a/bigquery/Cargo.toml +++ b/bigquery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-bigquery" -version = "0.4.2" +version = "0.5.0" edition = "2021" authors = ["yoshidan "] repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery" @@ -14,7 +14,7 @@ documentation = "https://docs.rs/google-cloud-bigquery/latest/google_cloud_bigqu async-trait = "0.1" google-cloud-token = { version = "0.1.1", path = "../foundation/token" } google-cloud-googleapis = { version="0.11.0", path = "../googleapis", features=["bigquery"]} -google-cloud-gax = { version = "0.15.1", path = "../foundation/gax"} +google-cloud-gax = { version = "0.16.0", path = "../foundation/gax"} thiserror = "1.0" tracing = "0.1" reqwest = { version = "0.11", features = ["json", "stream", "multipart"], default-features = false } diff --git a/foundation/auth/Cargo.toml b/foundation/auth/Cargo.toml index 6fdd1a91..e405c6f8 100644 --- a/foundation/auth/Cargo.toml +++ b/foundation/auth/Cargo.toml @@ -20,7 +20,7 @@ async-trait = "0.1" home = "0.5" urlencoding = "2.1" tokio = { version = "1.32", features = ["fs"]} -google-cloud-metadata = { version = "0.3.2", path = "../metadata" } +google-cloud-metadata = { version = "0.4.0", path = "../metadata" } google-cloud-token = { version = "0.1.1", path = "../token" } base64 = "0.21" time = "0.3" diff --git a/foundation/gax/Cargo.toml b/foundation/gax/Cargo.toml index c3177c0b..68d49bbb 100644 --- a/foundation/gax/Cargo.toml +++ b/foundation/gax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-gax" -version = "0.15.1" +version = "0.16.0" authors = ["yoshidan "] edition = "2018" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax" diff --git a/foundation/longrunning/Cargo.toml b/foundation/longrunning/Cargo.toml index 9a7392f8..7fac6ec7 100644 --- a/foundation/longrunning/Cargo.toml +++ b/foundation/longrunning/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-longrunning" -version = "0.15.3" +version = "0.16.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning" @@ -11,6 +11,6 @@ description = "Google Cloud Platform longrunning library." [dependencies] google-cloud-googleapis = { version = "0.11.0", path = "../../googleapis" } -google-cloud-gax = { version = "0.15.1", path = "../gax" } +google-cloud-gax = { version = "0.16.0", path = "../gax" } tonic = { version = "0.9", features = ["tls", "prost"] } prost = "0.11" diff --git a/foundation/metadata/Cargo.toml b/foundation/metadata/Cargo.toml index c42dc7e5..31444eb6 100644 --- a/foundation/metadata/Cargo.toml +++ b/foundation/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-metadata" -version = "0.3.3" +version = "0.4.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/metadata" diff --git a/pubsub/Cargo.toml b/pubsub/Cargo.toml index 3b3848c1..10d03189 100644 --- a/pubsub/Cargo.toml +++ b/pubsub/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-pubsub" -version = "0.20.1" +version = "0.21.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub" @@ -20,7 +20,7 @@ thiserror = "1.0" tokio-util = "0.7" google-cloud-token = { version = "0.1.1", path = "../foundation/token" } -google-cloud-gax = { version = "0.15.1", path = "../foundation/gax" } +google-cloud-gax = { version = "0.16.0", path = "../foundation/gax" } google-cloud-googleapis = { version = "0.11.0", path = "../googleapis", features = ["pubsub"]} google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } diff --git a/spanner-derive/Cargo.toml b/spanner-derive/Cargo.toml index 1b8d739c..2a51cfc0 100644 --- a/spanner-derive/Cargo.toml +++ b/spanner-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-spanner-derive" -version = "0.1.1" +version = "0.2.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/macro/spanner" diff --git a/spanner/Cargo.toml b/spanner/Cargo.toml index 55fb6472..8289ab3a 100644 --- a/spanner/Cargo.toml +++ b/spanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-spanner" -version = "0.23.2" +version = "0.24.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner" @@ -24,8 +24,8 @@ tokio-util = "0.7" bigdecimal = { version="0.3", features=["serde"] } google-cloud-token = { version = "0.1.1", path = "../foundation/token" } -google-cloud-longrunning = { version = "0.15.3", path = "../foundation/longrunning" } -google-cloud-gax = { version = "0.15.1", path = "../foundation/gax" } +google-cloud-longrunning = { version = "0.16.0", path = "../foundation/longrunning" } +google-cloud-gax = { version = "0.16.0", path = "../foundation/gax" } google-cloud-googleapis = { version = "0.11.0", path = "../googleapis", features = ["spanner"]} google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 2a0dcb80..244c0148 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-storage" -version = "0.13.2" +version = "0.14.0" edition = "2021" authors = ["yoshidan "] repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage" @@ -32,7 +32,7 @@ percent-encoding = "2.3" futures-util = "0.3" bytes = "1.5" -google-cloud-metadata = { optional = true, version = "0.3", path = "../foundation/metadata" } +google-cloud-metadata = { optional = true, version = "0.4", path = "../foundation/metadata" } google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies]