Skip to content

Commit

Permalink
release v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredh159 committed Feb 6, 2025
1 parent b91bc40 commit 91d6b85
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 34 deletions.
14 changes: 7 additions & 7 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 ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
6 changes: 3 additions & 3 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
12 changes: 6 additions & 6 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asciidork-cli"
version = "0.15.1"
version = "0.16.0"
edition = "2021"
description = "Asciidork CLI"
license = "MIT"
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
10 changes: 5 additions & 5 deletions dr-html-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"] }
Expand Down
8 changes: 4 additions & 4 deletions dr-html-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions eval/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 91d6b85

Please sign in to comment.