Skip to content

Commit

Permalink
chore: release v0.6.4 (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-heller authored Apr 7, 2024
1 parent 319c7ba commit b91d56b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.6.4] - 2024-04-07

### Bug Fixes

- Fix `withBinaryFile` errors on Windows by normalizing paths with `normpath` instead of `std::fs::canonicalize()` ([#84](https://github.com/max-heller/mdbook-pandoc/pull/84))


## [0.6.3] - 2024-03-29

### Bug Fixes
Expand Down
30 changes: 15 additions & 15 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mdbook-pandoc"
description = "A mdbook backend that outsources most of the rendering process to pandoc."
version = "0.6.3"
version = "0.6.4"
rust-version = "1.71.0"
edition = "2021"
authors = ["Max Heller <max.a.heller@gmail.com>"]
Expand All @@ -22,7 +22,7 @@ log = "0.4.0"
mdbook = { version = "0.4.35", default-features = false }
normpath = "1.0.0, <1.2.0" # 1.2.0 raises MSRV to 1.74
once_cell = "1.0.0"
pulldown-cmark = { version = "0.10.0", default-features = false }
pulldown-cmark = { version = "0.10.0, <0.10.2", default-features = false } # 0.10.2 raises MSRV to 1.74
pulldown-cmark-to-cmark = "13.0.0"
regex = "1.5.5"
semver = "1.0.0"
Expand Down

0 comments on commit b91d56b

Please sign in to comment.