Skip to content

Commit

Permalink
release v0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredh159 committed Jan 31, 2025
1 parent d058131 commit 40aa62f
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 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.0"
version = "0.15.1"
edition = "2021"
description = "Asciidork AST nodes"
license = "MIT"

[dependencies]
bumpalo = { version = "3.15.4", features = ["collections"] }
asciidork-core = { path = "../core", version = "0.12.0" }
asciidork-core = { path = "../core", version = "0.15.1" }
smallvec = "1.13.2"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 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.0"
version = "0.15.1"
edition = "2021"
description = "Asciidork backend"
license = "MIT"

[dependencies]
asciidork-ast = { path = "../ast", version = "0.15.0" }
asciidork-core = { path = "../core", version = "0.12.0" }
asciidork-core = { path = "../core", version = "0.15.1" }

[lints]
workspace = true
4 changes: 2 additions & 2 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.0"
version = "0.15.1"
edition = "2021"
description = "Asciidork CLI"
license = "MIT"
Expand All @@ -12,7 +12,7 @@ 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.12.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" }
colored = "2.0.4"
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.12.0"
version = "0.15.1"
edition = "2021"
description = "Asciidork core shared utils, types"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions dr-html-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asciidork-dr-html-backend"
version = "0.15.0"
version = "0.15.1"
edition = "2021"
description = "Asciidork Asciidoctor HTML backend"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ license = "MIT"
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.12.0" }
asciidork-core = { path = "../core", version = "0.15.1" }
lazy_static = "1.4.0"
regex = "1.10.2"
tracing = { version = "0.1", features = ["release_max_level_off"] }
Expand Down
2 changes: 1 addition & 1 deletion dr-html-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ default = ["console_error_panic_hook"]
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.12.0" }
asciidork-core = { path = "../core", version = "0.15.1" }
asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.15.0" }

# The `console_error_panic_hook` crate provides better debugging of panics by
Expand Down
2 changes: 1 addition & 1 deletion eval/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asciidork-eval"
version = "0.15.0"
version = "0.15.1"
edition = "2021"
description = "Asciidork eval"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 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.0"
version = "0.15.1"
edition = "2021"
description = "Asciidork parser"
license = "MIT"

[dependencies]
asciidork-ast = { path = "../ast", version = "0.15.0" }
asciidork-core = { path = "../core", version = "0.12.0" }
asciidork-core = { path = "../core", version = "0.15.1" }
bumpalo = { version = "3.15.4", features = ["collections"] }
jiff = "0.1.15"
lazy_static = "1.4.0"
Expand Down

0 comments on commit 40aa62f

Please sign in to comment.