diff --git a/CHANGELOG.md b/CHANGELOG.md index 56c02a6..ea6a331 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. +## [0.9.3] - 2025-01-18 + +### Documentation + +- Suggest `cargo install --locked` and fix formatting in README (#157) + +### Miscellaneous Tasks + +- Unexport accidentally-exported macro (#153) + +### Testing + +- Clean up multiline strings in tests using `indoc` (#155) +- Split test suite into sections (#156) + + ## [0.9.2] - 2025-01-18 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 7df5586..75689a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "mdbook-pandoc" -version = "0.9.2" +version = "0.9.3" dependencies = [ "aho-corasick", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index db6199b..13da653 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mdbook-pandoc" description = "A mdbook backend that outsources most of the rendering process to pandoc." -version = "0.9.2" +version = "0.9.3" rust-version = "1.75.0" edition = "2021" authors = ["Max Heller "]