Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #282

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 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.4.0"
version = "0.5.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.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.18.0", path = "../foundation/longrunning" }
google-cloud-auth = { optional = true, version = "0.16", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { version="0.14.0", path = "../googleapis", features=["artifact-registry"]}
google-cloud-gax = { version = "0.18.0", path = "../foundation/gax"}
google-cloud-longrunning = { version = "0.19.0", path = "../foundation/longrunning" }
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
8 changes: 4 additions & 4 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.1", path = "../foundation/token" }
google-cloud-googleapis = { version="0.13.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax"}
google-cloud-token = { version = "0.1.2", path = "../foundation/token" }
google-cloud-googleapis = { version="0.14.0", path = "../googleapis", features=["bigquery"]}
google-cloud-gax = { version = "0.18.0", path = "../foundation/gax"}
thiserror = "1.0"
tracing = "0.1"
reqwest = { version = "0.12.4", features = ["json", "stream", "multipart", "charset"], default-features = false }
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.15", path="../foundation/auth", default-features=false }
google-cloud-auth = { optional = true, version = "0.16", path="../foundation/auth", default-features=false }

[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
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.15.0"
version = "0.16.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/auth"
Expand Down
4 changes: 2 additions & 2 deletions 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.17.0"
version = "0.18.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2018"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax"
Expand All @@ -16,5 +16,5 @@ tonic = { version = "0.11", features = ["prost", "tls-webpki-roots"] }
thiserror = "1.0"
tower = { version = "0.4", features = ["filter"] }
http = "0.2"
google-cloud-token = { version = "0.1.1", path = "../token" }
google-cloud-token = { version = "0.1.2", path = "../token" }
tokio-retry = "0.3"
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.18.0"
version = "0.19.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.13.0", path = "../../googleapis" }
google-cloud-gax = { version = "0.17.0", path = "../gax" }
google-cloud-googleapis = { version = "0.14.0", path = "../../googleapis" }
google-cloud-gax = { version = "0.18.0", path = "../gax" }
tonic = { version = "0.11", features = ["tls", "prost"] }
prost = "0.12"
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.13.0"
version = "0.14.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis"
Expand Down
8 changes: 4 additions & 4 deletions kms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "google-cloud-kms"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["yoshidan <naohiro.y@gmail.com>"]
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/kms"
Expand All @@ -12,9 +12,9 @@ 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.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"}
google-cloud-auth = { optional = true, version = "0.16", path="../foundation/auth", default-features=false }
google-cloud-googleapis = { version="0.14.0", path = "../googleapis", features=["kms"]}
google-cloud-gax = { version = "0.18.0", path = "../foundation/gax"}
tracing = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
10 changes: 5 additions & 5 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.26.0"
version = "0.27.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub"
Expand All @@ -19,11 +19,11 @@ async-stream = "0.3"
thiserror = "1.0"
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.13.0", path = "../googleapis", features = ["pubsub"]}
google-cloud-token = { version = "0.1.2", path = "../foundation/token" }
google-cloud-gax = { version = "0.18.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.14.0", path = "../googleapis", features = ["pubsub"]}

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

[dev-dependencies]
tokio = { version="1.32", features=["rt-multi-thread"] }
Expand Down
12 changes: 6 additions & 6 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.28.0"
version = "0.29.0"
authors = ["yoshidan <naohiro.y@gmail.com>"]
edition = "2021"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner"
Expand All @@ -22,12 +22,12 @@ serde = { version = "1.0", optional = true, features = ["derive"] }
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.18.0", path = "../foundation/longrunning" }
google-cloud-gax = { version = "0.17.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.13.0", path = "../googleapis", features = ["spanner"]}
google-cloud-token = { version = "0.1.2", path = "../foundation/token" }
google-cloud-longrunning = { version = "0.19.0", path = "../foundation/longrunning" }
google-cloud-gax = { version = "0.18.0", path = "../foundation/gax" }
google-cloud-googleapis = { version = "0.14.0", path = "../googleapis", features = ["spanner"]}

google-cloud-auth = { optional = true, version = "0.15", path="../foundation/auth", default-features=false }
google-cloud-auth = { optional = true, version = "0.16", 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
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "google-cloud-storage"
readme = "README.md"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage"
version = "0.19.0"
version = "0.20.0"

[dependencies]
anyhow = "1.0"
Expand All @@ -17,7 +17,7 @@ async-trait = "0.1"
base64 = "0.21"
bytes = "1.5"
futures-util = "0.3"
google-cloud-token = {version = "0.1.1", path = "../foundation/token"}
google-cloud-token = {version = "0.1.2", path = "../foundation/token"}
hex = "0.4"
once_cell = "1.18"
percent-encoding = "2.3"
Expand Down Expand Up @@ -45,7 +45,7 @@ tokio = {version = "1.32", features = ["macros"]}
tracing = "0.1"
url = "2.4"

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

[dev-dependencies]
Expand Down
Loading