Skip to content

Commit 4edf896

Browse files
authored
chore(release): v0.2.0 (#304)
1 parent 90b2e58 commit 4edf896

File tree

16 files changed

+83
-83
lines changed

16 files changed

+83
-83
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111
exclude = ["examples/transfers/contracts", "examples/transfers/enclave"]
1212

1313
[workspace.package]
14-
version = "0.1.0"
14+
version = "0.2.0"
1515
edition = "2021"
1616
rust-version = "1.81.0"
1717
license = "Apache-2.0"
@@ -117,21 +117,21 @@ mc-sgx-dcap-sys-types = { version = "0.11.0", default-features = false }
117117
mc-attestation-verifier = { version = "0.4.3", default-features = false }
118118

119119
# quartz
120-
quartz-cw-proof = { version = "0.1.0", path = "crates/enclave/cw-proof", default-features = false }
121-
quartz-common = { version = "0.1.0", path = "crates/common", default-features = false }
122-
quartz-contract-core = { version = "0.1.0", path = "crates/contracts/core", default-features = false }
123-
quartz-contract-core-derive = { version = "0.1.0", path = "crates/contracts/core/derive", default-features = false }
124-
quartz-dcap-verifier-msgs = { version = "0.1.0", path = "crates/contracts/dcap-verifier/msgs", default-features = false }
125-
quartz-enclave-core = { version = "0.1.1", path = "crates/enclave/core", default-features = false }
126-
quartz-proto = { version = "0.1.0", path = "crates/enclave/proto", default-features = false }
127-
quartz-tee-ra = { version = "0.1.0", path = "crates/contracts/tee-ra", default-features = false }
128-
quartz-tcbinfo = { version = "0.1.0", path = "crates/contracts/tcbinfo", default-features = false, features = [
120+
quartz-cw-proof = { version = "0.2.0", path = "crates/enclave/cw-proof", default-features = false }
121+
quartz-common = { version = "0.2.0", path = "crates/common", default-features = false }
122+
quartz-contract-core = { version = "0.2.0", path = "crates/contracts/core", default-features = false }
123+
quartz-contract-core-derive = { version = "0.2.0", path = "crates/contracts/core/derive", default-features = false }
124+
quartz-dcap-verifier-msgs = { version = "0.2.0", path = "crates/contracts/dcap-verifier/msgs", default-features = false }
125+
quartz-enclave-core = { version = "0.2.0", path = "crates/enclave/core", default-features = false }
126+
quartz-proto = { version = "0.2.0", path = "crates/enclave/proto", default-features = false }
127+
quartz-tee-ra = { version = "0.2.0", path = "crates/contracts/tee-ra", default-features = false }
128+
quartz-tcbinfo = { version = "0.2.0", path = "crates/contracts/tcbinfo", default-features = false, features = [
129129
"library",
130130
] }
131-
quartz-tcbinfo-msgs = { version = "0.1.0", path = "crates/contracts/tcbinfo/msgs", default-features = false }
132-
quartz-tm-prover = { version = "0.1.0", path = "crates/utils/tm-prover", default-features = false }
133-
quartz-tm-stateless-verifier = { version = "0.1.0", path = "crates/enclave/tm-stateless-verifier", default-features = false }
134-
cw-client = { version = "0.1.0", path = "crates/utils/cw-client", default-features = false }
131+
quartz-tcbinfo-msgs = { version = "0.2.0", path = "crates/contracts/tcbinfo/msgs", default-features = false }
132+
quartz-tm-prover = { version = "0.2.0", path = "crates/utils/tm-prover", default-features = false }
133+
quartz-tm-stateless-verifier = { version = "0.2.0", path = "crates/enclave/tm-stateless-verifier", default-features = false }
134+
cw-client = { version = "0.2.0", path = "crates/utils/cw-client", default-features = false }
135135

136136
[profile.release]
137137
opt-level = "z"

crates/cli/src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ pub struct HandshakeArgs {
127127
#[serde(skip_serializing_if = "Option::is_none")]
128128
pub chain_id: Option<ChainId>,
129129

130-
/// <host>:<port> to tendermint rpc interface for this chain
130+
/// `<host>:<port>` to tendermint rpc interface for this chain
131131
#[arg(long)]
132132
#[serde(skip_serializing_if = "Option::is_none")]
133133
#[serde_as(as = "Option<DisplayFromStr>")]
@@ -170,7 +170,7 @@ pub struct ContractDeployArgs {
170170
#[arg(long, default_value = "{}")]
171171
pub init_msg: String,
172172

173-
/// <host>:<port> to tendermint rpc interface for this chain
173+
/// `<host>:<port>` to tendermint rpc interface for this chain
174174
#[arg(long)]
175175
#[serde(skip_serializing_if = "Option::is_none")]
176176
#[serde_as(as = "Option<DisplayFromStr>")]

crates/cli/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub struct Config {
2121
#[serde(default = "default_chain_id")]
2222
pub chain_id: ChainId,
2323

24-
/// <host>:<port> to tendermint rpc interface for this chain
24+
/// `<host>:<port>` to tendermint rpc interface for this chain
2525
#[serde(default = "default_node_url")]
2626
#[serde_as(as = "DisplayFromStr")]
2727
pub node_url: Url,

crates/cli/src/handler/dev.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use crate::{
2020
handshake::HandshakeRequest,
2121
},
2222
response::{dev::DevResponse, Response},
23-
Config, BANNER,
23+
Config,
2424
};
2525

2626
#[async_trait]

crates/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quartz-common"
3-
version = "0.1.1"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

crates/enclave/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quartz-enclave-core"
3-
version = "0.1.1"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

crates/enclave/core/src/host.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub type Response<R, E> = <R as Handler<E>>::Response;
2929
/// The host is responsible for:
3030
/// - Listening for blockchain events via a [`ChainClient`].
3131
/// - Constructing enclave requests from events by using an event handler.
32-
/// - Forwarding these requests to the enclave through [`enclave_call`].
32+
/// - Forwarding these requests to the enclave through [`Host::enclave_call`].
3333
/// - Relaying responses from the enclave back to the blockchain (typically by sending a transaction).
3434
///
3535
/// This separation ensures that all communication with the enclave is derived from

examples/pingpong/contracts/Cargo.lock

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

examples/pingpong/contracts/Cargo.toml

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

33
[package]
44
name = "ping-pong-contract"
5-
version = "0.1.0"
5+
version = "0.2.0"
66
edition = "2021"
77
authors = ["Informal Systems <[email protected]>"]
88
exclude = ["contract.wasm", "hash.txt"]

0 commit comments

Comments
 (0)