Skip to content

Commit

Permalink
bump up to new version (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshidan authored May 7, 2024
1 parent db62947 commit 5af32c3
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions artifact-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-artifact-registry"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
authors = ["yoshidan <naohiro.y@gmail.com>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/artifact-registry"
Expand All @@ -12,10 +12,10 @@ documentation = "https://docs.rs/google-cloud-artifact-registry/latest/google_cl

[dependencies]
google-cloud-token = { version = "0.1.2", path = "../foundation/token" }
google-cloud-auth = { optional = true, version = "0.14", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { version="0.12.0", path = "../googleapis", features=["artifact-registry"]}
google-cloud-auth = { optional = true, version = "0.15", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { version="0.13.0", path = "../googleapis", features=["artifact-registry"]}
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax"}
google-cloud-longrunning = { version = "0.17.0", path = "../foundation/longrunning" }
google-cloud-longrunning = { version = "0.18.0", path = "../foundation/longrunning" }
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions bigquery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-bigquery"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
authors = ["yoshidan <naohiro.y@gmail.com>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery"
Expand All @@ -13,7 +13,7 @@ documentation = "https://docs.rs/google-cloud-bigquery/latest/google_cloud_bigqu
[dependencies]
async-trait = "0.1"
google-cloud-token = { version = "0.1.1", path = "../foundation/token" }
google-cloud-googleapis = { version="0.12.0", path = "../googleapis", features=["bigquery"]}
google-cloud-googleapis = { version="0.13.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax"}
thiserror = "1.0"
tracing = "0.1"
Expand All @@ -30,7 +30,7 @@ backon = "0.4"
reqwest-middleware = { version = "0.3", features = ["json", "multipart"] }
anyhow = "1.0"

google-cloud-auth = { optional = true, version = "0.14", path="../foundation/auth", default-features=false }
google-cloud-auth = { optional = true, version = "0.15", path="../foundation/auth", default-features=false }

[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
Expand Down
4 changes: 2 additions & 2 deletions foundation/auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-auth"
version = "0.14.0"
version = "0.15.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/auth"
Expand All @@ -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.4.0", path = "../metadata" }
google-cloud-metadata = { version = "0.5.0", path = "../metadata" }
google-cloud-token = { version = "0.1.1", path = "../token" }
base64 = "0.21"
time = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions foundation/longrunning/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-longrunning"
version = "0.17.0"
version = "0.18.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning"
Expand All @@ -10,7 +10,7 @@ readme = "README.md"
description = "Google Cloud Platform longrunning library."

[dependencies]
google-cloud-googleapis = { version = "0.12.0", path = "../../googleapis" }
google-cloud-googleapis = { version = "0.13.0", path = "../../googleapis" }
google-cloud-gax = { version = "0.17.0", path = "../gax" }
tonic = { version = "0.10", features = ["tls", "prost"] }
prost = "0.12"
2 changes: 1 addition & 1 deletion foundation/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-metadata"
version = "0.4.0"
version = "0.5.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/metadata"
Expand Down
2 changes: 1 addition & 1 deletion googleapis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-googleapis"
version = "0.12.0"
version = "0.13.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis"
Expand Down
4 changes: 2 additions & 2 deletions kms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ documentation = "https://docs.rs/google-cloud-kms/latest/google_cloud_kms/"

[dependencies]
google-cloud-token = { version = "0.1.2", path = "../foundation/token" }
google-cloud-auth = { optional = true, version = "0.14", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { version="0.12.0", path = "../googleapis", features=["kms"]}
google-cloud-auth = { optional = true, version = "0.15", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { version="0.13.0", path = "../googleapis", features=["kms"]}
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax"}
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions pubsub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-pubsub"
version = "0.24.0"
version = "0.25.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub"
Expand All @@ -21,9 +21,9 @@ tokio-util = "0.7"

google-cloud-token = { version = "0.1.1", path = "../foundation/token" }
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.12.0", path = "../googleapis", features = ["pubsub"]}
google-cloud-googleapis = { version = "0.13.0", path = "../googleapis", features = ["pubsub"]}

google-cloud-auth = { optional = true, version = "0.14", path="../foundation/auth", default-features=false }
google-cloud-auth = { optional = true, version = "0.15", path="../foundation/auth", default-features=false }

[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
Expand Down
8 changes: 4 additions & 4 deletions spanner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-spanner"
version = "0.26.0"
version = "0.27.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner"
Expand All @@ -23,11 +23,11 @@ tokio-util = "0.7"
bigdecimal = { version="0.4", features=["serde"] }

google-cloud-token = { version = "0.1.1", path = "../foundation/token" }
google-cloud-longrunning = { version = "0.17.0", path = "../foundation/longrunning" }
google-cloud-longrunning = { version = "0.18.0", path = "../foundation/longrunning" }
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.12.0", path = "../googleapis", features = ["spanner"]}
google-cloud-googleapis = { version = "0.13.0", path = "../googleapis", features = ["spanner"]}

google-cloud-auth = { optional = true, version = "0.14", path="../foundation/auth", default-features=false }
google-cloud-auth = { optional = true, version = "0.15", path="../foundation/auth", default-features=false }

[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
Expand Down
6 changes: 3 additions & 3 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-storage"
version = "0.17.1"
version = "0.18.0"
edition = "2021"
authors = ["yoshidan <naohiro.y@gmail.com>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage"
Expand Down Expand Up @@ -45,8 +45,8 @@ futures-util = "0.3"
bytes = "1.5"
async-trait = "0.1"

google-cloud-metadata = { optional = true, version = "0.4", path = "../foundation/metadata" }
google-cloud-auth = { optional = true, version = "0.14", path = "../foundation/auth", default-features = false }
google-cloud-metadata = { optional = true, version = "0.5", path = "../foundation/metadata" }
google-cloud-auth = { optional = true, version = "0.15", path = "../foundation/auth", default-features = false }

[dev-dependencies]
tokio = { version = "1.32", features = ["rt-multi-thread"] }
Expand Down

0 comments on commit 5af32c3

Please sign in to comment.