Skip to content

Commit 17486ff

Browse files
(cargo-release) version 0.7.3
1 parent e3630ff commit 17486ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+230
-227
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased] - ReleaseDate
1111

12+
## [0.7.3] - 2023-08-07
13+
1214
### Added
1315

1416
- Added `Deserialize` and `Serialize` traits to:
@@ -200,7 +202,8 @@ doc builds for:
200202
- Initial release of FFI bindings crates
201203

202204
<!-- next-url -->
203-
[Unreleased]: https://github.com/mobilecoinfoundation/sgx/compare/v0.7.2...HEAD
205+
[Unreleased]: https://github.com/mobilecoinfoundation/sgx/compare/v0.7.3...HEAD
206+
[0.7.3]: https://github.com/mobilecoinfoundation/sgx/compare/v0.7.2...v0.7.3
204207
[0.7.2]: https://github.com/mobilecoinfoundation/sgx/compare/v0.7.1...v0.7.2
205208
[0.7.1]: https://github.com/mobilecoinfoundation/sgx/compare/v0.7.0...v0.7.1
206209
[0.7.0]: https://github.com/mobilecoinfoundation/sgx/compare/v0.6.1...v0.7.0

Cargo.lock

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

capable/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mc-sgx-capable"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
edition = "2021"
55
authors = ["MobileCoin"]
66
rust-version = "1.62.1"
@@ -13,11 +13,11 @@ categories = ["api-bindings", "hardware-support"]
1313
keywords = ["sgx"]
1414

1515
[dependencies]
16-
mc-sgx-capable-sys = { path = "sys", version = "=0.7.2" }
17-
mc-sgx-capable-sys-types = { path = "sys/types", version = "=0.7.2" }
18-
mc-sgx-capable-types = { path = "types", version = "=0.7.2" }
19-
mc-sgx-core-types = { path = "../core/types", version = "=0.7.2" }
20-
mc-sgx-util = { path = "../util", version = "=0.7.2" }
16+
mc-sgx-capable-sys = { path = "sys", version = "=0.7.3" }
17+
mc-sgx-capable-sys-types = { path = "sys/types", version = "=0.7.3" }
18+
mc-sgx-capable-types = { path = "types", version = "=0.7.3" }
19+
mc-sgx-core-types = { path = "../core/types", version = "=0.7.3" }
20+
mc-sgx-util = { path = "../util", version = "=0.7.3" }
2121

2222
[dev-dependencies]
2323
yare = "1.0.1"

capable/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Idiomatic rust for the `sgx_capable` library.
1717
[crate-link]: https://crates.io/crates/mc-sgx-capable
1818
[docs-image]: https://img.shields.io/docsrs/mc-sgx-capable?style=flat-square
1919
[docs-link]: https://docs.rs/crate/mc-sgx-capable
20-
[deps-image]: https://deps.rs/crate/mc-sgx-capable/0.7.2/status.svg?style=flat-square
21-
[deps-link]: https://deps.rs/crate/mc-sgx-capable/0.7.2
20+
[deps-image]: https://deps.rs/crate/mc-sgx-capable/0.7.3/status.svg?style=flat-square
21+
[deps-link]: https://deps.rs/crate/mc-sgx-capable/0.7.3

capable/sys/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mc-sgx-capable-sys"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
authors = ["MobileCoin"]
55
categories = ["external-ffi-bindings", "hardware-support"]
66
description = "FFI linkage for the `sgx_capable` library."
@@ -15,10 +15,10 @@ rust-version = "1.62.1"
1515
doctest = false
1616

1717
[dependencies]
18-
mc-sgx-capable-sys-types = { path = "types", version = "=0.7.2" }
19-
mc-sgx-core-sys-types = { path = "../../core/sys/types", version = "=0.7.2" }
18+
mc-sgx-capable-sys-types = { path = "types", version = "=0.7.3" }
19+
mc-sgx-core-sys-types = { path = "../../core/sys/types", version = "=0.7.3" }
2020

2121
[build-dependencies]
2222
bindgen = "0.66.1"
2323
cargo-emit = "0.2.1"
24-
mc-sgx-core-build = { path = "../../core/build", version = "=0.7.2" }
24+
mc-sgx-core-build = { path = "../../core/build", version = "=0.7.3" }

capable/sys/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ FFI bindings to the `libsgx_capable` library.
1717
[crate-link]: https://crates.io/crates/mc-sgx-capable-sys
1818
[docs-image]: https://img.shields.io/docsrs/mc-sgx-capable-sys?style=flat-square
1919
[docs-link]: https://docs.rs/crate/mc-sgx-capable-sys
20-
[deps-image]: https://deps.rs/crate/mc-sgx-capable-sys/0.7.2/status.svg?style=flat-square
21-
[deps-link]: https://deps.rs/crate/mc-sgx-capable-sys/0.7.2
20+
[deps-image]: https://deps.rs/crate/mc-sgx-capable-sys/0.7.3/status.svg?style=flat-square
21+
[deps-link]: https://deps.rs/crate/mc-sgx-capable-sys/0.7.3

0 commit comments

Comments
 (0)