Skip to content

Commit 13d312c

Browse files
joonasthomastaylor312
authored andcommitted
chore: Rename wasmcloud:identity@0.1.0-draft to wasmcloud:identity@0.0.1
Signed-off-by: Joonas Bergius <joonas@cosmonic.com>
1 parent c1b8063 commit 13d312c

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

crates/runtime/src/runtime.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ impl Runtime {
258258
{
259259
true
260260
}
261-
"wasmcloud:identity/store@0.1.0-draft"
261+
"wasmcloud:identity/store@0.0.1"
262262
if self.experimental_features.workload_identity_interface =>
263263
{
264264
true

crates/runtime/wit/deps.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ deps = ["cli", "clocks", "filesystem", "io", "random", "sockets"]
3535

3636
[identity]
3737
path = "../../../wit/identity/wit"
38-
sha256 = "41f0acd0e8573859403803df65d196b9e455d13d28e2c87842ba9932401aeb36"
39-
sha512 = "b7d5dbf2acbbd2896abc0d203536e3559d0703609c6abe9fdd4ee71502fbd4316dd3d967fea2ebee9b3cf4fa50a6c6d733be3a0104717e79d86be146b1a4a663"
38+
sha256 = "f9644574968ab9d266f981922b394112967965ae17d261464518f1a816046677"
39+
sha512 = "d307bb55a5991736fe93a9be1e89e1c4adff55fb99f504b09c6e7bd603e330b91758722e8411794d0cbbd1f4595ddb2f9f5417d81718d71e73b5ea133c9ff217"
4040

4141
[io]
4242
sha256 = "7210e5653539a15478f894d4da24cc69d61924cbcba21d2804d69314a88e5a4c"

crates/runtime/wit/deps/identity/identity.wit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasmcloud:identity@0.1.0-draft;
1+
package wasmcloud:identity@0.0.1;
22

33
/// This WIT interface powers workload identity support for components
44
///

crates/runtime/wit/host.wit

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ world interfaces {
1010

1111
import wasmcloud:bus/lattice@1.0.0;
1212
import wasmcloud:bus/lattice@2.0.0;
13-
import wasmcloud:identity/store@0.1.0-draft;
13+
import wasmcloud:identity/store@0.0.1;
1414
import wasmcloud:messaging/consumer@0.2.0;
1515
import wasmcloud:messaging/producer@0.3.0;
1616
import wasmcloud:messaging/request-reply@0.3.0;

tests/components/rust/workload-identity-component/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wit_bindgen::generate!({
22
with: {
33
"wasi:http/types@0.2.2": wasmcloud_component::wasi::http::types,
44
"wasi:io/streams@0.2.2": wasmcloud_component::wasi::io::streams,
5-
"wasmcloud:identity/store@0.1.0-draft": generate,
5+
"wasmcloud:identity/store@0.0.1": generate,
66
},
77
generate_all,
88
});

tests/components/rust/workload-identity-component/wit/deps/wasmcloud-identity-0.1.0-draft/package.wit tests/components/rust/workload-identity-component/wit/deps/wasmcloud-identity-0.0.1/package.wit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasmcloud:identity@0.1.0-draft;
1+
package wasmcloud:identity@0.0.1;
22

33
/// This WIT interface powers workload identity support for components
44
///
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package test-components:workload-identity;
22

33
world component {
4-
import wasmcloud:identity/store@0.1.0-draft;
4+
import wasmcloud:identity/store@0.0.1;
55

66
export wasi:http/incoming-handler@0.2.2;
77
}

wit/identity/wit/identity.wit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wasmcloud:identity@0.1.0-draft;
1+
package wasmcloud:identity@0.0.1;
22

33
/// This WIT interface powers workload identity support for components
44
///

0 commit comments

Comments
 (0)