diff --git a/Cargo.lock b/Cargo.lock index c3fe49b..0487ab3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -61,7 +61,7 @@ dependencies = [ [[package]] name = "asciidork-ast" -version = "0.15.1" +version = "0.16.0" dependencies = [ "asciidork-core", "bumpalo", @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "asciidork-backend" -version = "0.15.1" +version = "0.16.0" dependencies = [ "asciidork-ast", "asciidork-core", @@ -80,7 +80,7 @@ dependencies = [ [[package]] name = "asciidork-cli" -version = "0.15.1" +version = "0.16.0" dependencies = [ "asciidork-ast", "asciidork-core", @@ -100,14 +100,14 @@ dependencies = [ [[package]] name = "asciidork-core" -version = "0.15.1" +version = "0.16.0" dependencies = [ "lazy_static", ] [[package]] name = "asciidork-dr-html-backend" -version = "0.15.1" +version = "0.16.0" dependencies = [ "asciidork-ast", "asciidork-backend", @@ -125,7 +125,7 @@ dependencies = [ [[package]] name = "asciidork-eval" -version = "0.15.1" +version = "0.16.0" dependencies = [ "asciidork-ast", "asciidork-backend", @@ -133,7 +133,7 @@ dependencies = [ [[package]] name = "asciidork-parser" -version = "0.15.1" +version = "0.16.0" dependencies = [ "asciidork-ast", "asciidork-core", diff --git a/ast/Cargo.toml b/ast/Cargo.toml index f5ade4d..c2e75ff 100644 --- a/ast/Cargo.toml +++ b/ast/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "asciidork-ast" -version = "0.15.1" +version = "0.16.0" edition = "2021" description = "Asciidork AST nodes" license = "MIT" [dependencies] bumpalo = { version = "3.15.4", features = ["collections"] } -asciidork-core = { path = "../core", version = "0.15.1" } +asciidork-core = { path = "../core", version = "0.16.0" } smallvec = "1.13.2" [dev-dependencies] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 63e4845..4af075a 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "asciidork-backend" -version = "0.15.1" +version = "0.16.0" edition = "2021" description = "Asciidork backend" license = "MIT" [dependencies] -asciidork-ast = { path = "../ast", version = "0.15.0" } -asciidork-core = { path = "../core", version = "0.15.1" } +asciidork-ast = { path = "../ast", version = "0.16.0" } +asciidork-core = { path = "../core", version = "0.16.0" } [lints] workspace = true diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 25fd625..e5f7d97 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asciidork-cli" -version = "0.15.1" +version = "0.16.0" edition = "2021" description = "Asciidork CLI" license = "MIT" @@ -10,11 +10,11 @@ name = "asciidork" path = "src/main.rs" [dependencies] -asciidork-eval = { path = "../eval", version = "0.15.0" } -asciidork-ast = { path = "../ast", version = "0.15.0" } -asciidork-core = { path = "../core", version = "0.15.1" } -asciidork-parser = { path = "../parser", version = "0.15.0" } -asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.15.0" } +asciidork-eval = { path = "../eval", version = "0.16.0" } +asciidork-ast = { path = "../ast", version = "0.16.0" } +asciidork-core = { path = "../core", version = "0.16.0" } +asciidork-parser = { path = "../parser", version = "0.16.0" } +asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.16.0" } colored = "2.0.4" bumpalo = { version = "3.15.4", features = ["collections"] } clap = { version = "4.5.4", features = ["derive"] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 69acbce..fc4b972 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asciidork-core" -version = "0.15.1" +version = "0.16.0" edition = "2021" description = "Asciidork core shared utils, types" license = "MIT" diff --git a/dr-html-backend/Cargo.toml b/dr-html-backend/Cargo.toml index cfc2c2f..631c170 100644 --- a/dr-html-backend/Cargo.toml +++ b/dr-html-backend/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "asciidork-dr-html-backend" -version = "0.15.1" +version = "0.16.0" edition = "2021" description = "Asciidork Asciidoctor HTML backend" license = "MIT" [dependencies] -asciidork-ast = { path = "../ast", version = "0.15.0" } -asciidork-backend = { path = "../backend", version = "0.15.0" } -asciidork-eval = { path = "../eval", version = "0.15.0" } -asciidork-core = { path = "../core", version = "0.15.1" } +asciidork-ast = { path = "../ast", version = "0.16.0" } +asciidork-backend = { path = "../backend", version = "0.16.0" } +asciidork-eval = { path = "../eval", version = "0.16.0" } +asciidork-core = { path = "../core", version = "0.16.0" } lazy_static = "1.4.0" regex = "1.10.2" tracing = { version = "0.1", features = ["release_max_level_off"] } diff --git a/dr-html-wasm/Cargo.toml b/dr-html-wasm/Cargo.toml index 1301a17..b8ff0dc 100644 --- a/dr-html-wasm/Cargo.toml +++ b/dr-html-wasm/Cargo.toml @@ -10,10 +10,10 @@ default = ["console_error_panic_hook"] [dependencies] wasm-bindgen = "0.2.84" -asciidork-parser = { path = "../parser", version = "0.15.0" } -asciidork-eval = { path = "../eval", version = "0.15.0" } -asciidork-core = { path = "../core", version = "0.15.1" } -asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.15.0" } +asciidork-parser = { path = "../parser", version = "0.16.0" } +asciidork-eval = { path = "../eval", version = "0.16.0" } +asciidork-core = { path = "../core", version = "0.16.0" } +asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.16.0" } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires diff --git a/eval/Cargo.toml b/eval/Cargo.toml index 0a8c70a..996224a 100644 --- a/eval/Cargo.toml +++ b/eval/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "asciidork-eval" -version = "0.15.1" +version = "0.16.0" edition = "2021" description = "Asciidork eval" license = "MIT" [dependencies] -asciidork-ast = { path = "../ast", version = "0.15.0" } -asciidork-backend = { path = "../backend", version = "0.15.0" } +asciidork-ast = { path = "../ast", version = "0.16.0" } +asciidork-backend = { path = "../backend", version = "0.16.0" } [lints] workspace = true diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 77dc264..060d10e 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "asciidork-parser" -version = "0.15.1" +version = "0.16.0" edition = "2021" description = "Asciidork parser" license = "MIT" [dependencies] -asciidork-ast = { path = "../ast", version = "0.15.0" } -asciidork-core = { path = "../core", version = "0.15.1" } +asciidork-ast = { path = "../ast", version = "0.16.0" } +asciidork-core = { path = "../core", version = "0.16.0" } bumpalo = { version = "3.15.4", features = ["collections"] } jiff = "0.1.15" lazy_static = "1.4.0"