Skip to content

Commit

Permalink
release v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredh159 committed Dec 31, 2024
1 parent 9654db7 commit 328a881
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 26 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asciidork-ast"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
description = "Asciidork AST nodes"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "asciidork-backend"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
description = "Asciidork backend"
license = "MIT"

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

[lints]
Expand Down
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asciidork-cli"
version = "0.12.0"
version = "0.13.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.12.0" }
asciidork-ast = { path = "../ast", version = "0.12.0" }
asciidork-eval = { path = "../eval", version = "0.13.0" }
asciidork-ast = { path = "../ast", version = "0.13.0" }
asciidork-core = { path = "../core", version = "0.12.0" }
asciidork-parser = { path = "../parser", version = "0.12.0" }
asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.12.0" }
asciidork-parser = { path = "../parser", version = "0.13.0" }
asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.13.0" }
colored = "2.0.4"
bumpalo = { version = "3.15.4", features = ["collections"] }
clap = { version = "4.5.4", features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 deletions dr-html-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "asciidork-dr-html-backend"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
description = "Asciidork Asciidoctor HTML backend"
license = "MIT"

[dependencies]
asciidork-ast = { path = "../ast", version = "0.12.0" }
asciidork-backend = { path = "../backend", version = "0.12.0" }
asciidork-eval = { path = "../eval", version = "0.12.0" }
asciidork-ast = { path = "../ast", version = "0.13.0" }
asciidork-backend = { path = "../backend", version = "0.13.0" }
asciidork-eval = { path = "../eval", version = "0.13.0" }
asciidork-core = { path = "../core", version = "0.12.0" }
lazy_static = "1.4.0"
regex = "1.10.2"
Expand Down
6 changes: 3 additions & 3 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.12.0" }
asciidork-eval = { path = "../eval", version = "0.12.0" }
asciidork-parser = { path = "../parser", version = "0.13.0" }
asciidork-eval = { path = "../eval", version = "0.13.0" }
asciidork-core = { path = "../core", version = "0.12.0" }
asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.12.0" }
asciidork-dr-html-backend = { path = "../dr-html-backend", version = "0.13.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.12.0"
version = "0.13.0"
edition = "2021"
description = "Asciidork eval"
license = "MIT"

[dependencies]
asciidork-ast = { path = "../ast", version = "0.12.0" }
asciidork-backend = { path = "../backend", version = "0.12.0" }
asciidork-ast = { path = "../ast", version = "0.13.0" }
asciidork-backend = { path = "../backend", version = "0.13.0" }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "asciidork-parser"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
description = "Asciidork parser"
license = "MIT"

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

0 comments on commit 328a881

Please sign in to comment.