Skip to content

Commit

Permalink
fix macro docs and bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
suaviloquence committed Aug 10, 2024
1 parent 5166c8c commit 77122a2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrapelect"
version = "0.3.2"
version = "0.4.0"
edition = "2021"
authors = ["Max Carr <[email protected]>"]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,7 +14,7 @@ reqwest = "0.12.5"
scraper = "0.19"
tokio = { version = "1.38.0", features = ["full"] }
scrapelect-filter-types = { path = "./filter-types", version = "0.1.0" }
scrapelect-filter-proc-macro = { path = "./filter-proc-macro", version = "0.3.0" }
scrapelect-filter-proc-macro = { path = "./filter-proc-macro", version = "0.4.0" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion filter-proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrapelect-filter-proc-macro"
version = "0.3.2"
version = "0.4.0"
edition = "2021"
authors = ["Max Carr <[email protected]>"]
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion filter-proc-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ fn derive_args_impl(ast: &DeriveInput) -> TokenStream {
///
/// Note that patterns are not supported beyond `(mut)? x: T`
///
/// The return type must be `scrapelect::interpreter::Result<Value<'doc>>`
/// The return type must be `scrapelect_filter_types::Result<PValue<'doc>>`
///
/// # Panics
/// Panics if the token stream is not valid or the function signature is not as specified.
Expand Down
2 changes: 1 addition & 1 deletion filter-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ description = "Types for making scrapelect Filters"
scraper = "0.19"
serde = { version = "1.0", features = ["derive", "rc"] }
url = "2.5"
scrapelect-filter-proc-macro = { version = "0.3.2", path = "../filter-proc-macro" }
scrapelect-filter-proc-macro = { version = "0.4.0", path = "../filter-proc-macro" }

0 comments on commit 77122a2

Please sign in to comment.