diff --git a/Cargo.lock b/Cargo.lock index a6f1a4e..980b3ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -669,7 +669,7 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "html-query" -version = "1.1.0" +version = "1.2.0" dependencies = [ "anyhow", "clap", @@ -680,7 +680,7 @@ dependencies = [ [[package]] name = "html-query-ast" -version = "0.1.1" +version = "0.2.0" dependencies = [ "nom", "nom-supreme", @@ -689,7 +689,7 @@ dependencies = [ [[package]] name = "html-query-extractor" -version = "0.1.1" +version = "0.2.0" dependencies = [ "html-query-ast", "markup5ever", diff --git a/html-query-ast/Cargo.toml b/html-query-ast/Cargo.toml index cce1811..f93bd83 100644 --- a/html-query-ast/Cargo.toml +++ b/html-query-ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "html-query-ast" -version = "0.1.1" +version = "0.2.0" edition = "2021" authors = ["Tom Forbes "] repository = "https://github.com/orf/hq" diff --git a/html-query-extractor/Cargo.toml b/html-query-extractor/Cargo.toml index 9accfa2..7c12486 100644 --- a/html-query-extractor/Cargo.toml +++ b/html-query-extractor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "html-query-extractor" -version = "0.1.1" +version = "0.2.0" edition = "2021" authors = ["Tom Forbes "] repository = "https://github.com/orf/hq" @@ -12,4 +12,4 @@ markup5ever = "0.11.0" serde_json = "1.0.93" scraper = "0.18.0" thiserror = "1.0.40" -html-query-ast = {version= "0.1.1", path= "../html-query-ast" } +html-query-ast = {version= "0.2.0", path= "../html-query-ast" } diff --git a/html-query-web-ui/Cargo.toml b/html-query-web-ui/Cargo.toml index 3cac7dd..0f9ee54 100644 --- a/html-query-web-ui/Cargo.toml +++ b/html-query-web-ui/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" dioxus = "0.4.0" dioxus-web = "0.4.0" getrandom = { version = "0.2", features = ["js"] } -html-query-ast = {version= "0.1.1", path= "../html-query-ast" } -html-query-extractor = {version= "0.1.1", path= "../html-query-extractor" } +html-query-ast = {version= "0.2.0", path= "../html-query-ast" } +html-query-extractor = {version= "0.2.0", path= "../html-query-extractor" } serde_json = { version = "1.0.96", default-features = false } web-sys = { version = "0.3.61", features = ["console"] } serde = { version = "1.0.160", features = ["derive"] } diff --git a/html-query/Cargo.toml b/html-query/Cargo.toml index 462bc2f..b33549b 100644 --- a/html-query/Cargo.toml +++ b/html-query/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "html-query" -version = "1.1.0" +version = "1.2.0" edition = "2021" authors = ["Tom Forbes "] repository = "https://github.com/orf/hq" @@ -12,8 +12,8 @@ readme = "../README.md" clap = { version = "4.1.13", features = ["derive"] } anyhow = "1.0.70" serde_json = "1.0.93" -html-query-ast = {version= "0.1.1", path= "../html-query-ast" } -html-query-extractor = {version= "0.1.1", path= "../html-query-extractor" } +html-query-ast = {version= "0.2.0", path= "../html-query-ast" } +html-query-extractor = {version= "0.2.0", path= "../html-query-extractor" } [[bin]] name = "hq"