Skip to content

Commit 5c30f41

Browse files
authored
Bump version (#368)
1 parent b0a8830 commit 5c30f41

File tree

10 files changed

+32
-52
lines changed

10 files changed

+32
-52
lines changed

artifact-registry/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-artifact-registry"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55
authors = ["yoshidan <naohiro.y@gmail.com>"]
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/artifact-registry"
@@ -16,9 +16,9 @@ doctest = false
1616
[dependencies]
1717
token-source = "1.0"
1818
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }
19-
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["artifact-registry"]}
20-
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax"}
21-
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.1.0", path = "../foundation/longrunning" }
19+
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["artifact-registry"]}
20+
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
21+
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.2.0", path = "../foundation/longrunning" }
2222
tracing = "0.1"
2323
prost-types = "0.13"
2424

bigquery/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-bigquery"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55
authors = ["yoshidan <naohiro.y@gmail.com>"]
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery"
@@ -16,8 +16,8 @@ doctest = false
1616
[dependencies]
1717
async-trait = "0.1"
1818
token-source = "1.0"
19-
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["bigquery"]}
20-
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax"}
19+
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["bigquery"]}
20+
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
2121
thiserror = "1.0"
2222
tracing = "0.1"
2323
reqwest = { version = "0.12.4", features = ["json", "stream", "multipart", "charset"], default-features = false }

foundation/gax/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-gax"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["yoshidan <naohiro.y@gmail.com>"]
55
edition = "2018"
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax"

foundation/longrunning/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-longrunning"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["yoshidan <naohiro.y@gmail.com>"]
55
edition = "2021"
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning"
@@ -13,7 +13,7 @@ description = "Google Cloud Platform longrunning library."
1313
doctest = false
1414

1515
[dependencies]
16-
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../../googleapis" }
17-
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../gax" }
16+
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.1.0", path = "../../googleapis" }
17+
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../gax" }
1818
tonic = { version = "0.13", default-features = false }
1919
prost = "0.13"

googleapis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-googleapis"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
authors = ["yoshidan <naohiro.y@gmail.com>"]
55
edition = "2021"
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis"

googleapis/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![allow(clippy::doc_lazy_continuation)]
2+
#![allow(clippy::doc_overindented_list_items)]
23

34
#[path = "google.rpc.rs"]
45
pub mod rpc;

kms/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-kms"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55
authors = ["yoshidan <naohiro.y@gmail.com>"]
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/kms"
@@ -16,8 +16,8 @@ doctest = false
1616
[dependencies]
1717
token-source = "1.0"
1818
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }
19-
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["kms"]}
20-
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax"}
19+
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.1.0", path = "../googleapis", features=["kms"]}
20+
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax"}
2121
tracing = "0.1"
2222

2323
[dev-dependencies]

pubsub/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-pubsub"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["yoshidan <naohiro.y@gmail.com>"]
55
edition = "2021"
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub"
@@ -23,8 +23,8 @@ thiserror = "1.0"
2323
tokio-util = "0.7"
2424

2525
token-source = "1.0"
26-
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax" }
27-
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../googleapis", features = ["pubsub"]}
26+
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax" }
27+
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.1.0", path = "../googleapis", features = ["pubsub"]}
2828

2929
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }
3030

spanner/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gcloud-spanner"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
authors = ["yoshidan <naohiro.y@gmail.com>"]
55
edition = "2021"
66
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner"
@@ -26,9 +26,9 @@ tokio-util = "0.7"
2626
bigdecimal = { version="0.4", features=["serde"] }
2727

2828
token-source = "1.0"
29-
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.1.0", path = "../foundation/longrunning" }
30-
google-cloud-gax = { package = "gcloud-gax", version = "1.1.0", path = "../foundation/gax" }
31-
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../googleapis", features = ["spanner"]}
29+
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.2.0", path = "../foundation/longrunning" }
30+
google-cloud-gax = { package = "gcloud-gax", version = "1.2.0", path = "../foundation/gax" }
31+
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.1.0", path = "../googleapis", features = ["spanner"]}
3232

3333
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.1.0", path="../foundation/auth", default-features=false }
3434

storage/src/http/buckets/mod.rs

Lines changed: 9 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -408,46 +408,25 @@ pub struct Binding {
408408
/// Specifies the principals requesting access for a Cloud Platform resource.
409409
/// `members` can have the following values:
410410
///
411-
/// * `allUsers`: A special identifier that represents anyone who is
412-
/// on the internet; with or without a Google account.
411+
/// * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account.
413412
///
414-
/// * `allAuthenticatedUsers`: A special identifier that represents anyone
415-
/// who is authenticated with a Google account or a service account.
413+
/// * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account.
416414
///
417-
/// * `user:{emailid}`: An email address that represents a specific Google
418-
/// account. For example, `alice@example.com` .
415+
/// * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` .
419416
///
420417
///
421-
/// * `serviceAccount:{emailid}`: An email address that represents a service
422-
/// account. For example, `my-other-app@appspot.gserviceaccount.com`.
418+
/// * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`.
423419
///
424-
/// * `group:{emailid}`: An email address that represents a Google group.
425-
/// For example, `admins@example.com`.
420+
/// * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`.
426421
///
427-
/// * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique
428-
/// identifier) representing a user that has been recently deleted. For
429-
/// example, `alice@example.com?uid=123456789012345678901`. If the user is
430-
/// recovered, this value reverts to `user:{emailid}` and the recovered user
431-
/// retains the role in the binding.
422+
/// * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding.
432423
///
433-
/// * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus
434-
/// unique identifier) representing a service account that has been recently
435-
/// deleted. For example,
436-
/// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`.
437-
/// If the service account is undeleted, this value reverts to
438-
/// `serviceAccount:{emailid}` and the undeleted service account retains the
439-
/// role in the binding.
424+
/// * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding.
440425
///
441-
/// * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique
442-
/// identifier) representing a Google group that has been recently
443-
/// deleted. For example, `admins@example.com?uid=123456789012345678901`. If
444-
/// the group is recovered, this value reverts to `group:{emailid}` and the
445-
/// recovered group retains the role in the binding.
426+
/// * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.
446427
///
447428
///
448-
/// * `domain:{domain}`: The G Suite domain (primary) that represents all the
449-
/// users of that domain. For example, `google.com` or `example.com`.
450-
///
429+
/// * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.
451430
///
452431
pub members: Vec<String>,
453432
/// The condition that is associated with this binding.

0 commit comments

Comments
 (0)