Skip to content

Commit e1fbe23

Browse files
authored
Release 0.2.0 (#139)
* release: 0.2.0 we did 0.1.0 partially before, so now we are bumping the 0.1.0 packages to 0.2.0 as well to stay in lockstep * chore: symlink str included doctests
1 parent f3c7f99 commit e1fbe23

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.1.0"
6+
version = "0.2.0"
77
edition = "2021"
88
rust-version = "1.65"
99
authors = ["Alloy Contributors"]
@@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"]
1818

1919
[workspace.dependencies]
2020
# workspace crates
21-
alloy-dyn-abi = { version = "0.1.0", path = "crates/dyn-abi", default-features = false }
22-
alloy-primitives = { version = "0.1.0", path = "crates/primitives", default-features = false }
23-
alloy-rlp = { version = "0.1.0", path = "crates/rlp", default-features = false }
24-
alloy-rlp-derive = { version = "0.1.0", path = "crates/rlp-derive", default-features = false }
25-
alloy-sol-macro = { version = "0.1.0", path = "crates/sol-macro", default-features = false }
26-
alloy-sol-types = { version = "0.1.0", path = "crates/sol-types", default-features = false }
27-
syn-solidity = { version = "0.1.0", path = "crates/syn-solidity", default-features = false }
21+
alloy-dyn-abi = { version = "0.2.0", path = "crates/dyn-abi", default-features = false }
22+
alloy-primitives = { version = "0.2.0", path = "crates/primitives", default-features = false }
23+
alloy-rlp = { version = "0.2.0", path = "crates/rlp", default-features = false }
24+
alloy-rlp-derive = { version = "0.2.0", path = "crates/rlp-derive", default-features = false }
25+
alloy-sol-macro = { version = "0.2.0", path = "crates/sol-macro", default-features = false }
26+
alloy-sol-types = { version = "0.2.0", path = "crates/sol-types", default-features = false }
27+
syn-solidity = { version = "0.2.0", path = "crates/syn-solidity", default-features = false }
2828

2929
ruint = { version = "1.9.0", package = "ruint2", default-features = false }
3030
ruint-macro = { version = "1.0.3", package = "ruint2-macro", default-features = false }

crates/sol-macro/doctests

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../sol-types/tests/

crates/sol-macro/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,27 +41,27 @@ mod utils;
4141
///
4242
/// ## Structs and enums
4343
/// ```ignore
44-
#[doc = include_str!("../../sol-types/tests/doc_structs.rs")]
44+
#[doc = include_str!("../doctests/doc_structs.rs")]
4545
/// ```
4646
///
4747
/// ## UDVT and type aliases
4848
/// ```ignore
49-
#[doc = include_str!("../../sol-types/tests/doc_types.rs")]
49+
#[doc = include_str!("../doctests/doc_types.rs")]
5050
/// ```
5151
///
5252
/// ## Functions and errors
5353
/// ```ignore
54-
#[doc = include_str!("../../sol-types/tests/doc_function_like.rs")]
54+
#[doc = include_str!("../doctests/doc_function_like.rs")]
5555
/// ```
5656
///
5757
/// ## Events
5858
/// ```ignore
59-
#[doc = include_str!("../../sol-types/tests/doc_events.rs")]
59+
#[doc = include_str!("../doctests/doc_events.rs")]
6060
/// ```
6161
///
6262
/// ## Contracts/interfaces
6363
/// ```ignore
64-
#[doc = include_str!("../../sol-types/tests/doc_contracts.rs")]
64+
#[doc = include_str!("../doctests/doc_contracts.rs")]
6565
/// ```
6666
#[proc_macro]
6767
pub fn sol(input: TokenStream) -> TokenStream {

0 commit comments

Comments
 (0)