Skip to content

Commit

Permalink
Release 0.2.0 (#139)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
gakonst authored Jun 23, 2023
1 parent f3c7f99 commit e1fbe23
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.65"
authors = ["Alloy Contributors"]
Expand All @@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"]

[workspace.dependencies]
# workspace crates
alloy-dyn-abi = { version = "0.1.0", path = "crates/dyn-abi", default-features = false }
alloy-primitives = { version = "0.1.0", path = "crates/primitives", default-features = false }
alloy-rlp = { version = "0.1.0", path = "crates/rlp", default-features = false }
alloy-rlp-derive = { version = "0.1.0", path = "crates/rlp-derive", default-features = false }
alloy-sol-macro = { version = "0.1.0", path = "crates/sol-macro", default-features = false }
alloy-sol-types = { version = "0.1.0", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.1.0", path = "crates/syn-solidity", default-features = false }
alloy-dyn-abi = { version = "0.2.0", path = "crates/dyn-abi", default-features = false }
alloy-primitives = { version = "0.2.0", path = "crates/primitives", default-features = false }
alloy-rlp = { version = "0.2.0", path = "crates/rlp", default-features = false }
alloy-rlp-derive = { version = "0.2.0", path = "crates/rlp-derive", default-features = false }
alloy-sol-macro = { version = "0.2.0", path = "crates/sol-macro", default-features = false }
alloy-sol-types = { version = "0.2.0", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.2.0", path = "crates/syn-solidity", default-features = false }

ruint = { version = "1.9.0", package = "ruint2", default-features = false }
ruint-macro = { version = "1.0.3", package = "ruint2-macro", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions crates/sol-macro/doctests
10 changes: 5 additions & 5 deletions crates/sol-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,27 @@ mod utils;
///
/// ## Structs and enums
/// ```ignore
#[doc = include_str!("../../sol-types/tests/doc_structs.rs")]
#[doc = include_str!("../doctests/doc_structs.rs")]
/// ```
///
/// ## UDVT and type aliases
/// ```ignore
#[doc = include_str!("../../sol-types/tests/doc_types.rs")]
#[doc = include_str!("../doctests/doc_types.rs")]
/// ```
///
/// ## Functions and errors
/// ```ignore
#[doc = include_str!("../../sol-types/tests/doc_function_like.rs")]
#[doc = include_str!("../doctests/doc_function_like.rs")]
/// ```
///
/// ## Events
/// ```ignore
#[doc = include_str!("../../sol-types/tests/doc_events.rs")]
#[doc = include_str!("../doctests/doc_events.rs")]
/// ```
///
/// ## Contracts/interfaces
/// ```ignore
#[doc = include_str!("../../sol-types/tests/doc_contracts.rs")]
#[doc = include_str!("../doctests/doc_contracts.rs")]
/// ```
#[proc_macro]
pub fn sol(input: TokenStream) -> TokenStream {
Expand Down

0 comments on commit e1fbe23

Please sign in to comment.