Skip to content

Commit

Permalink
update version (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshidan authored Oct 15, 2023
1 parent ff45202 commit 835b18f
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 20 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"foundation/token",
"foundation/metadata",
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.4.1"
version = "0.5.0"
edition = "2021"
authors = ["yoshidan <[email protected]>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery"
Expand All @@ -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.16.0", path = "../foundation/gax"}
thiserror = "1.0"
tracing = "0.1"
reqwest = { version = "0.11", features = ["json", "stream", "multipart"], default-features = false }
Expand All @@ -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"] }
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.12.0"
version = "0.13.0"
authors = ["yoshidan <[email protected]>"]
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.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"
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.15.0"
version = "0.16.0"
authors = ["yoshidan <[email protected]>"]
edition = "2018"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax"
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.15.2"
version = "0.16.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning"
Expand All @@ -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.16.0", path = "../gax" }
tonic = { version = "0.9", features = ["tls", "prost"] }
prost = "0.11"
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.3.2"
version = "0.4.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/metadata"
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.20.0"
version = "0.21.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub"
Expand All @@ -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.16.0", 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"] }
Expand Down
2 changes: 1 addition & 1 deletion spanner-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-spanner-derive"
version = "0.1.0"
version = "0.2.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/macro/spanner"
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.23.1"
version = "0.24.0"
authors = ["yoshidan <[email protected]>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner"
Expand All @@ -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.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.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"] }
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.13.1"
version = "0.14.0"
edition = "2021"
authors = ["yoshidan <[email protected]>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage"
Expand Down Expand Up @@ -32,8 +32,8 @@ percent-encoding = "2.3"
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-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]
tokio = { version="1.32", features=["rt-multi-thread"] }
Expand Down

0 comments on commit 835b18f

Please sign in to comment.