Skip to content

Commit

Permalink
update version (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshidan authored Jun 22, 2023
1 parent 7f004e6 commit 8e62fe1
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions bigquery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ documentation = "https://docs.rs/google-cloud-bigquery/latest/google_cloud_bigqu

[dependencies]
async-trait = "0.1"
google-cloud-token = { version = "0.1.0", path = "../foundation/token" }
google-cloud-googleapis = { version="0.9.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { version = "0.14.1", path = "../foundation/gax"}
google-cloud-token = { version = "0.1.1", path = "../foundation/token" }
google-cloud-googleapis = { version="0.10.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { version = "0.15.0", path = "../foundation/gax"}
thiserror = "1.0"
tracing = "0.1"
reqwest = { version = "0.11", features = ["json", "stream", "multipart"], default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions default/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ description = "Google Cloud Platform default config."
[dependencies]
async-trait = "0.1"

google-cloud-auth = { version = "0.10", path = "../foundation/auth", default-features = false }
google-cloud-auth = { version = "0.11", path = "../foundation/auth", default-features = false }

# optional
google-cloud-metadata = { version = "0.3", path = "../foundation/metadata", optional = true }
google-cloud-gax = { version = "0.14", path = "../foundation/gax", optional = true }
google-cloud-gax = { version = "0.15", path = "../foundation/gax", optional = true }

# components
google-cloud-pubsub = { version = "0.15", path = "../pubsub", optional = true }
google-cloud-pubsub = { version = "0.16", path = "../pubsub", optional = true }
google-cloud-spanner = { version = "0.20", path = "../spanner", optional = true }
google-cloud-storage = { version = "0.11", path = "../storage", default-features=false, optional = true }
google-cloud-bigquery = { version = "0.1", path = "../bigquery", default-features=false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.11.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/auth"
Expand Down
2 changes: 1 addition & 1 deletion foundation/gax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-gax"
version = "0.14.2"
version = "0.15.0"
authors = ["yoshidan <[email protected]>"]
edition = "2018"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax"
Expand Down
6 changes: 3 additions & 3 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.14.0"
version = "0.15.0"
authors = ["yoshidan <[email protected]>"]
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.9.0", path = "../../googleapis" }
google-cloud-gax = { version = "0.14.2", path = "../gax" }
google-cloud-googleapis = { version = "0.10.0", path = "../../googleapis" }
google-cloud-gax = { version = "0.15.0", path = "../gax" }
tonic = { version = "0.9", features = ["tls", "prost"] }
prost = "0.11"
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.9.0"
version = "0.10.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis"
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.15.0"
version = "0.16.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub"
Expand All @@ -20,8 +20,8 @@ thiserror = "1.0"
tokio-util = "0.7"

google-cloud-token = { version = "0.1.1", path = "../foundation/token" }
google-cloud-gax = { version = "0.14.2", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.9.0", path = "../googleapis", features = ["pubsub"]}
google-cloud-gax = { version = "0.15.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.10.0", path = "../googleapis", features = ["pubsub"]}

[dev-dependencies]
tokio = { version="1.20", features=["rt-multi-thread"] }
Expand Down
6 changes: 3 additions & 3 deletions spanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ serde = { version = "1.0", optional = true, features = ["derive"] }
tokio-util = "0.7"

google-cloud-token = { version = "0.1.1", path = "../foundation/token" }
google-cloud-longrunning= { version = "0.14.0", path = "../foundation/longrunning" }
google-cloud-gax = { version = "0.14.2", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.9.0", path = "../googleapis", features = ["spanner"]}
google-cloud-longrunning= { version = "0.15.0", path = "../foundation/longrunning" }
google-cloud-gax = { version = "0.15.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.10.0", path = "../googleapis", features = ["spanner"]}

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

0 comments on commit 8e62fe1

Please sign in to comment.