Skip to content

Commit 71bafe0

Browse files
authored
optee-*: bump version for crates.io publish (#257)
1 parent 23a041f commit 71bafe0

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

optee-teec/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@
1717

1818
[package]
1919
name = "optee-teec"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"
2424
description = "TEE client API."
2525
edition = "2018"
2626

2727
[dependencies]
28-
optee-teec-sys = { version = "0.6.0", path = "optee-teec-sys" }
29-
optee-teec-macros = { version = "0.6.0", path = "macros" }
28+
optee-teec-sys = { version = "0.7.0", path = "optee-teec-sys" }
29+
optee-teec-macros = { version = "0.7.0", path = "macros" }
3030
uuid = "0.7"
3131
hex = "0.3"
3232
num_enum = { version = "0.7.3", default-features = false }
3333

3434
[dev-dependencies]
3535
# disable linking when running unit tests
36-
optee-teec-sys = { version = "0.6.0", path = "optee-teec-sys", features = ["no_link"] }
36+
optee-teec-sys = { version = "0.7.0", path = "optee-teec-sys", features = ["no_link"] }
3737

3838
[workspace]
3939
resolver = "2"

optee-teec/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "optee-teec-macros"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"

optee-teec/optee-teec-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "optee-teec-sys"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"

optee-teec/systest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "systest"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"

optee-utee-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "optee-utee-build"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"

optee-utee/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717

1818
[package]
1919
name = "optee-utee"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"
2424
description = "TEE internal core API."
2525
edition = "2018"
2626

2727
[dependencies]
28-
optee-utee-sys = { version = "0.6.0", path = "optee-utee-sys" }
29-
optee-utee-macros = { version = "0.6.0", path = "macros" }
28+
optee-utee-sys = { version = "0.7.0", path = "optee-utee-sys" }
29+
optee-utee-macros = { version = "0.7.0", path = "macros" }
3030
bitflags = "1.0.4"
3131
uuid = { version = "0.8", default-features = false }
3232
hex = { version = "0.4", default-features = false, features = ["alloc"] }
@@ -39,8 +39,8 @@ once_cell = "1.20.2"
3939
serde = { version = "1.0.215" }
4040
serde_json = { version = "1.0.133" }
4141
# disable linking when running unit tests
42-
optee-utee-sys = { version = "0.6.0", path = "optee-utee-sys", features = ["no_link"] }
43-
optee-utee-mock = { version = "0.6.0", path = "optee-utee-mock" }
42+
optee-utee-sys = { version = "0.7.0", path = "optee-utee-sys", features = ["no_link"] }
43+
optee-utee-mock = { version = "0.7.0", path = "optee-utee-mock" }
4444

4545
[features]
4646
default = []

optee-utee/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "optee-utee-macros"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"

optee-utee/optee-utee-mock/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "optee-utee-mock"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"
@@ -27,4 +27,4 @@ edition = "2018"
2727
[dependencies]
2828
mockall = "0.13.1"
2929
once_cell = "1.21.3"
30-
optee-utee-sys = { version = "0.6.0", path = "../optee-utee-sys", features = ["no_link"] }
30+
optee-utee-sys = { version = "0.7.0", path = "../optee-utee-sys", features = ["no_link"] }

optee-utee/optee-utee-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "optee-utee-sys"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"

optee-utee/systest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "systest"
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/apache/teaclave-trustzone-sdk.git"

0 commit comments

Comments
 (0)