Skip to content

Commit

Permalink
Version bump to 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mssun committed Apr 8, 2020
1 parent aafb048 commit 970a926
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 30 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## [Unreleased]

## [0.2.3] - 2020-04-07
### Add
- ryu 1.0.3
- sval 0.5.1
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Here is an example of `Cargo.toml`.
```
[package]
name = "crates-sgx-example"
version = "0.2.2"
version = "0.2.3"
authors = ["The Universal Secure Computing Community Authors"]
edition = "2018"
Expand All @@ -29,8 +29,8 @@ mesalock_sgx = [
]
[dependencies]
cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true }
```
Expand Down Expand Up @@ -88,7 +88,7 @@ SGX_MODE=SW make test
sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true }
// Replace hex = "0.4.2", and pay attention to the tag
hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
```

2. Fix features: add a feature to enable SGX's standard library. For example:
Expand Down
2 changes: 1 addition & 1 deletion crates/either/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = ["data-structure", "no_std"]
categories = ["data-structures", "no-std"]

[dependencies]
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["derive"], optional = true }
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["derive"], optional = true }
sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true }
sgx_tunittest = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/lazy-static.rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", t

[dependencies.spin]
git = "https://github.com/universal-secure-computing-community/crates-sgx.git"
tag = "v0.2.2+sgx1.1.1"
tag = "v0.2.3+sgx1.1.1"
optional = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/rust-smallvec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ name = "smallvec"
path = "lib.rs"

[dependencies]
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", optional = true }
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", optional = true }

sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true }
sgx_tunittest = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/ryu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build = "build.rs"
small = []

[dependencies]
no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", optional = true }
no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", optional = true }

[dev-dependencies]
num_cpus = "1.8"
Expand Down
4 changes: 2 additions & 2 deletions crates/sval/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", t

[dependencies.smallvec]
git = "https://github.com/universal-secure-computing-community/crates-sgx.git"
tag = "v0.2.2+sgx1.1.1"
tag = "v0.2.3+sgx1.1.1"
default-features = false
optional = true

[dependencies.serde_lib]
git = "https://github.com/universal-secure-computing-community/crates-sgx.git"
tag = "v0.2.2+sgx1.1.1"
tag = "v0.2.3+sgx1.1.1"
optional = true
default-features = false
package = "serde"
Expand Down
4 changes: 2 additions & 2 deletions crates/sval/sgx-tests/enclave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ default = []

[dependencies]
sval = { path = "../..", features = ["std", "test", "serde", "derive", "arbitrary-depth"] }
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["derive"] }
serde_test = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["derive"] }
serde_test = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }

[target.'cfg(not(target_env = "sgx"))'.dependencies]
sgx_types = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1" }
Expand Down
34 changes: 16 additions & 18 deletions example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crates-sgx-example"
version = "0.2.2"
version = "0.2.3"
authors = ["The Universal Secure Computing Community Authors"]
edition = "2018"

Expand All @@ -15,22 +15,20 @@ mesalock_sgx = [
]

[dependencies]
adler32 = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
anyhow = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["serde"] }
fnv = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
itoa = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
lazy_static = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["derive"] }
smallvec = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["write", "union", "specialization", "may_dangle", "serde"] }
spin = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }
thiserror = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" }

# Unreleased
ryu = { path = "../crates/ryu", features = ["small", "no-panic"] }
sval = { path = "../crates/sval", features = ["std", "test", "serde", "derive", "arbitrary-depth"] }
adler32 = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
anyhow = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["serde"] }
fnv = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
itoa = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
lazy_static = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
ryu = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["small", "no-panic"] }
serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["derive"] }
smallvec = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["write", "union", "specialization", "may_dangle", "serde"] }
spin = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }
sval = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["std", "test", "serde", "derive", "arbitrary-depth"] }
thiserror = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" }

sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true }

0 comments on commit 970a926

Please sign in to comment.