Skip to content

Commit e6cb55b

Browse files
committed
{chore} version v0.1.5
1 parent dcf3698 commit e6cb55b

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
<!-- add new items here -->
66

7+
## v0.1.5
8+
79
- Add `collapsed` option in `book.toml` to collapse code blocks by default
810
- Add `uncollapsed` flag for code blocks to overrule the `collapsed` option
911
- Ensure the "Inputs:" text is in a separate paragraph from the playground

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-angular"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
authors = ["Bram Gotink <[email protected]>"]
66
license = "EUPL-1.2"
@@ -24,7 +24,10 @@ log = { version = "0.4.19", features = ["std"] }
2424
mdbook = { version = "0.4.32", default-features = false, features = ["search"] }
2525

2626
# Disable unicode features, we don't need them
27-
regex = { version = "1.9.1", default-features = false, features = ["std", "perf"] }
27+
regex = { version = "1.9.1", default-features = false, features = [
28+
"std",
29+
"perf",
30+
] }
2831

2932
serde_json = "1.0.103"
3033
serde = { version = "1.0.171", features = ["derive"] }
@@ -41,7 +44,11 @@ anyhow = "1.0.71"
4144

4245
once_cell = "1.18.0"
4346

44-
swc_core = { version = "0.79.28", features = ["common", "ecma_parser_typescript", "ecma_ast"] }
47+
swc_core = { version = "0.79.28", features = [
48+
"common",
49+
"ecma_parser_typescript",
50+
"ecma_ast",
51+
] }
4552

4653
chrono = { version = "0.4.26", default-features = false, features = ["clock"] }
4754

0 commit comments

Comments
 (0)