Skip to content

Commit 09db807

Browse files
authored
chore: bump versions to v0.1.0 (#620)
1 parent 0894fa7 commit 09db807

File tree

14 files changed

+54
-54
lines changed

14 files changed

+54
-54
lines changed

.sidekick.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extra-protos-extracted-name = 'gapic-showcase-0.35.5'
2626
[codec]
2727
# The default version for all crates. This can be overridden in the crate's
2828
# `.sidekick.toml` file.
29-
version = "0.1.0-rc4"
29+
version = "0.1.0"
3030
# These are external (not part of `google-cloud-rust`) crates used by (nearly
3131
# all) generated crates.
3232
'package:bytes' = 'force-used=true,package=bytes,version=1.8.0,feature=serde'
@@ -38,12 +38,12 @@ version = "0.1.0-rc4"
3838
'package:reqwest' = 'required-by-services=true,package=reqwest,version=0.12.12,feature=json'
3939
'package:serde_json' = 'required-by-services=true,package=serde_json,version=1.0.134'
4040
'package:tracing' = 'required-by-services=true,package=tracing,version=0.1.41'
41-
'package:gax' = 'required-by-services=true,package=gcp-sdk-gax,path=src/gax,feature=unstable-sdk-client,version=0.1.0-rc4'
41+
'package:gax' = 'required-by-services=true,package=gcp-sdk-gax,path=src/gax,feature=unstable-sdk-client,version=0.1.0'
4242
# These are crates in `google-cloud-rust`. If not used, `sidekick` prunes them
4343
# from the list of depedencies.
44-
'package:gtype' = 'package=gcp-sdk-type,source=google.type,path=src/generated/type,version=0.1.0-rc4'
45-
'package:wkt' = 'package=gcp-sdk-wkt,path=src/wkt,source=google.protobuf,version=0.1.0-rc4'
46-
'package:iam_v1' = 'package=gcp-sdk-iam-v1,source=google.iam.v1,path=src/generated/iam/v1,version=0.1.0-rc4'
47-
'package:location' = 'package=gcp-sdk-location,source=google.cloud.location,path=src/generated/cloud/location,version=0.1.0-rc4'
48-
'package:longrunning' = 'package=gcp-sdk-longrunning,source=google.longrunning,path=src/generated/longrunning,version=0.1.0-rc4'
49-
'package:rpc' = 'package=gcp-sdk-rpc,source=google.rpc,path=src/generated/rpc,version=0.1.0-rc4'
44+
'package:gtype' = 'package=gcp-sdk-type,source=google.type,path=src/generated/type,version=0.1.0'
45+
'package:wkt' = 'package=gcp-sdk-wkt,path=src/wkt,source=google.protobuf,version=0.1.0'
46+
'package:iam_v1' = 'package=gcp-sdk-iam-v1,source=google.iam.v1,path=src/generated/iam/v1,version=0.1.0'
47+
'package:location' = 'package=gcp-sdk-location,source=google.cloud.location,path=src/generated/cloud/location,version=0.1.0'
48+
'package:longrunning' = 'package=gcp-sdk-longrunning,source=google.longrunning,path=src/generated/longrunning,version=0.1.0'
49+
'package:rpc' = 'package=gcp-sdk-rpc,source=google.rpc,path=src/generated/rpc,version=0.1.0'

Cargo.lock

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/auth/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "gcp-sdk-auth"
17-
version = "0.1.0-rc4"
17+
version = "0.1.0"
1818
description = "Google Cloud Client Libraries for Rust - Authentication"
1919
edition.workspace = true
2020
authors.workspace = true

src/gax/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "gcp-sdk-gax"
17-
version = "0.1.0-rc4"
17+
version = "0.1.0"
1818
description = "Google Cloud Client Libraries for Rust"
1919
build = "build.rs"
2020
edition.workspace = true
@@ -35,9 +35,9 @@ serde = "1.0.216"
3535
serde_json = "1.0.134"
3636
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros"] }
3737
thiserror = "2.0.9"
38-
auth = { version = "0.1.0-rc4", path = "../auth", package = "gcp-sdk-auth" }
39-
rpc = { version = "0.1.0-rc4", path = "../generated/rpc", package = "gcp-sdk-rpc" }
40-
wkt = { version = "0.1.0-rc4", path = "../wkt", package = "gcp-sdk-wkt" }
38+
auth = { version = "0.1.0", path = "../auth", package = "gcp-sdk-auth" }
39+
rpc = { version = "0.1.0", path = "../generated/rpc", package = "gcp-sdk-rpc" }
40+
wkt = { version = "0.1.0", path = "../wkt", package = "gcp-sdk-wkt" }
4141
rand = "0.8.5"
4242

4343
[dev-dependencies]

src/gax/echo-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ axum = "0.7.9"
2424
serde_json = "1.0.133"
2525
tokio = { version = "1.42", features = ["macros"] }
2626
gax = { path = "..", package = "gcp-sdk-gax", features = ["unstable-sdk-client", "unstable-stream"] }
27-
rpc = { version = "0.1.0-rc4", path = "../../generated/rpc", package = "gcp-sdk-rpc" }
27+
rpc = { version = "0.1.0", path = "../../generated/rpc", package = "gcp-sdk-rpc" }

src/generated/cloud/location/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "gcp-sdk-location"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - Cloud Metadata API"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -28,14 +28,14 @@ categories.workspace = true
2828
[dependencies]
2929
async-trait = { version = "0.1.84" }
3030
bytes = { version = "1.8.0", features = ["serde"] }
31-
gax = { version = "0.1.0-rc4", path = "../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
31+
gax = { version = "0.1.0", path = "../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
3232
lazy_static = { version = "1.5.0" }
3333
reqwest = { version = "0.12.12", features = ["json"] }
3434
serde = { version = "1.0.216", features = ["serde_derive"] }
3535
serde_json = { version = "1.0.134" }
3636
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
3737
tracing = { version = "0.1.41" }
38-
wkt = { version = "0.1.0-rc4", path = "../../../../src/wkt", package = "gcp-sdk-wkt" }
38+
wkt = { version = "0.1.0", path = "../../../../src/wkt", package = "gcp-sdk-wkt" }
3939

4040
[features]
4141
unstable-stream = ["gax/unstable-stream"]

src/generated/cloud/secretmanager/v1/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "gcp-sdk-secretmanager-v1"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - Secret Manager API"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -28,16 +28,16 @@ categories.workspace = true
2828
[dependencies]
2929
async-trait = { version = "0.1.84" }
3030
bytes = { version = "1.8.0", features = ["serde"] }
31-
gax = { version = "0.1.0-rc4", path = "../../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
32-
iam_v1 = { version = "0.1.0-rc4", path = "../../../../../src/generated/iam/v1", package = "gcp-sdk-iam-v1" }
31+
gax = { version = "0.1.0", path = "../../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
32+
iam_v1 = { version = "0.1.0", path = "../../../../../src/generated/iam/v1", package = "gcp-sdk-iam-v1" }
3333
lazy_static = { version = "1.5.0" }
34-
location = { version = "0.1.0-rc4", path = "../../../../../src/generated/cloud/location", package = "gcp-sdk-location" }
34+
location = { version = "0.1.0", path = "../../../../../src/generated/cloud/location", package = "gcp-sdk-location" }
3535
reqwest = { version = "0.12.12", features = ["json"] }
3636
serde = { version = "1.0.216", features = ["serde_derive"] }
3737
serde_json = { version = "1.0.134" }
3838
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
3939
tracing = { version = "0.1.41" }
40-
wkt = { version = "0.1.0-rc4", path = "../../../../../src/wkt", package = "gcp-sdk-wkt" }
40+
wkt = { version = "0.1.0", path = "../../../../../src/wkt", package = "gcp-sdk-wkt" }
4141

4242
[features]
4343
unstable-stream = ["gax/unstable-stream", "location/unstable-stream"]

src/generated/cloud/workflows/v1/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "gcp-sdk-workflows-v1"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - Workflows API"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -28,16 +28,16 @@ categories.workspace = true
2828
[dependencies]
2929
async-trait = { version = "0.1.84" }
3030
bytes = { version = "1.8.0", features = ["serde"] }
31-
gax = { version = "0.1.0-rc4", path = "../../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
31+
gax = { version = "0.1.0", path = "../../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
3232
lazy_static = { version = "1.5.0" }
33-
location = { version = "0.1.0-rc4", path = "../../../../../src/generated/cloud/location", package = "gcp-sdk-location" }
34-
longrunning = { version = "0.1.0-rc4", path = "../../../../../src/generated/longrunning", package = "gcp-sdk-longrunning" }
33+
location = { version = "0.1.0", path = "../../../../../src/generated/cloud/location", package = "gcp-sdk-location" }
34+
longrunning = { version = "0.1.0", path = "../../../../../src/generated/longrunning", package = "gcp-sdk-longrunning" }
3535
reqwest = { version = "0.12.12", features = ["json"] }
3636
serde = { version = "1.0.216", features = ["serde_derive"] }
3737
serde_json = { version = "1.0.134" }
3838
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
3939
tracing = { version = "0.1.41" }
40-
wkt = { version = "0.1.0-rc4", path = "../../../../../src/wkt", package = "gcp-sdk-wkt" }
40+
wkt = { version = "0.1.0", path = "../../../../../src/wkt", package = "gcp-sdk-wkt" }
4141

4242
[features]
4343
unstable-stream = ["gax/unstable-stream", "location/unstable-stream"]

src/generated/iam/v1/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "gcp-sdk-iam-v1"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - IAM Meta API"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -28,12 +28,12 @@ categories.workspace = true
2828
[dependencies]
2929
async-trait = { version = "0.1.84" }
3030
bytes = { version = "1.8.0", features = ["serde"] }
31-
gax = { version = "0.1.0-rc4", path = "../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
32-
gtype = { version = "0.1.0-rc4", path = "../../../../src/generated/type", package = "gcp-sdk-type" }
31+
gax = { version = "0.1.0", path = "../../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
32+
gtype = { version = "0.1.0", path = "../../../../src/generated/type", package = "gcp-sdk-type" }
3333
lazy_static = { version = "1.5.0" }
3434
reqwest = { version = "0.12.12", features = ["json"] }
3535
serde = { version = "1.0.216", features = ["serde_derive"] }
3636
serde_json = { version = "1.0.134" }
3737
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
3838
tracing = { version = "0.1.41" }
39-
wkt = { version = "0.1.0-rc4", path = "../../../../src/wkt", package = "gcp-sdk-wkt" }
39+
wkt = { version = "0.1.0", path = "../../../../src/wkt", package = "gcp-sdk-wkt" }

src/generated/longrunning/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "gcp-sdk-longrunning"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - Long Running Operations API"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -28,15 +28,15 @@ categories.workspace = true
2828
[dependencies]
2929
async-trait = { version = "0.1.84" }
3030
bytes = { version = "1.8.0", features = ["serde"] }
31-
gax = { version = "0.1.0-rc4", path = "../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
31+
gax = { version = "0.1.0", path = "../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
3232
lazy_static = { version = "1.5.0" }
3333
reqwest = { version = "0.12.12", features = ["json"] }
34-
rpc = { version = "0.1.0-rc4", path = "../../../src/generated/rpc", package = "gcp-sdk-rpc" }
34+
rpc = { version = "0.1.0", path = "../../../src/generated/rpc", package = "gcp-sdk-rpc" }
3535
serde = { version = "1.0.216", features = ["serde_derive"] }
3636
serde_json = { version = "1.0.134" }
3737
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
3838
tracing = { version = "0.1.41" }
39-
wkt = { version = "0.1.0-rc4", path = "../../../src/wkt", package = "gcp-sdk-wkt" }
39+
wkt = { version = "0.1.0", path = "../../../src/wkt", package = "gcp-sdk-wkt" }
4040

4141
[features]
4242
unstable-stream = ["gax/unstable-stream"]

src/generated/openapi-validation/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "secretmanager-openapi-v1"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - Secret Manager API"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -29,14 +29,14 @@ publish = false
2929
[dependencies]
3030
async-trait = { version = "0.1.84" }
3131
bytes = { version = "1.8.0", features = ["serde"] }
32-
gax = { version = "0.1.0-rc4", path = "../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
32+
gax = { version = "0.1.0", path = "../../../src/gax", package = "gcp-sdk-gax", features = ["unstable-sdk-client"] }
3333
lazy_static = { version = "1.5.0" }
3434
reqwest = { version = "0.12.12", features = ["json"] }
3535
serde = { version = "1.0.216", features = ["serde_derive"] }
3636
serde_json = { version = "1.0.134" }
3737
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
3838
tracing = { version = "0.1.41" }
39-
wkt = { version = "0.1.0-rc4", path = "../../../src/wkt", package = "gcp-sdk-wkt" }
39+
wkt = { version = "0.1.0", path = "../../../src/wkt", package = "gcp-sdk-wkt" }
4040

4141
[features]
4242
unstable-stream = ["gax/unstable-stream"]

src/generated/rpc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "gcp-sdk-rpc"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - Google RPC Types"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -29,4 +29,4 @@ categories.workspace = true
2929
bytes = { version = "1.8.0", features = ["serde"] }
3030
serde = { version = "1.0.216", features = ["serde_derive"] }
3131
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
32-
wkt = { version = "0.1.0-rc4", path = "../../../src/wkt", package = "gcp-sdk-wkt" }
32+
wkt = { version = "0.1.0", path = "../../../src/wkt", package = "gcp-sdk-wkt" }

src/generated/type/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[package]
1818
name = "gcp-sdk-type"
19-
version = "0.1.0-rc4"
19+
version = "0.1.0"
2020
description = "Google Cloud Client Libraries for Rust - Common Types"
2121
edition.workspace = true
2222
authors.workspace = true
@@ -29,4 +29,4 @@ categories.workspace = true
2929
bytes = { version = "1.8.0", features = ["serde"] }
3030
serde = { version = "1.0.216", features = ["serde_derive"] }
3131
serde_with = { version = "3.12.0", default-features = false, features = ["base64", "macros", "std"] }
32-
wkt = { version = "0.1.0-rc4", path = "../../../src/wkt", package = "gcp-sdk-wkt" }
32+
wkt = { version = "0.1.0", path = "../../../src/wkt", package = "gcp-sdk-wkt" }

src/wkt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "gcp-sdk-wkt"
17-
version = "0.1.0-rc4"
17+
version = "0.1.0"
1818
description = "Google Cloud Client Libraries for Rust - Well Known Types"
1919
edition.workspace = true
2020
authors.workspace = true

0 commit comments

Comments
 (0)