From 66e4a123a7da6bf0a9956ef97169dcfffa6575ce Mon Sep 17 00:00:00 2001 From: Max Heller Date: Tue, 25 Jun 2024 16:18:44 -0400 Subject: [PATCH] chore: release --- CHANGELOG.md | 25 +++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3464500..e2f6c87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ All notable changes to this project will be documented in this file. +## [0.7.0] - 2024-06-25 + +### Bug Fixes + +- Minimum `pandoc` version is actually 2.8, not 1.14 ([#90](https://github.com/max-heller/mdbook-pandoc/pull/90)) +- Resolve links correctly when book contains exactly one chapter ([#101](https://github.com/max-heller/mdbook-pandoc/pull/101)) +- Correctly resolve absolute-path links to be relative to book root ([#103](https://github.com/max-heller/mdbook-pandoc/pull/103)) +- [**breaking**] Work around Pandoc 3.2+ breaking links to chapters ([#100](https://github.com/max-heller/mdbook-pandoc/pull/100)) +- Replace unresolvable remote images with their descriptions ([#105](https://github.com/max-heller/mdbook-pandoc/pull/105)) + +### Changes + +- Raise minimum supported Rust version to 1.74 ([#104](https://github.com/max-heller/mdbook-pandoc/pull/104)) + +### Features + +- Preserve escape characters (or lack thereof) from Markdown source ([#95](https://github.com/max-heller/mdbook-pandoc/pull/95)) +- Allow overriding source format and extensions through Pandoc's `from` option ([#98](https://github.com/max-heller/mdbook-pandoc/pull/98)) + +### Miscellaneous Tasks + +- Fix date in CHANGELOG ([#86](https://github.com/max-heller/mdbook-pandoc/pull/86)) +- Update `cargo-dist` ([#92](https://github.com/max-heller/mdbook-pandoc/pull/92)) + + ## [0.6.4] - 2024-04-07 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 35e0667..179cb3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -541,7 +541,7 @@ dependencies = [ [[package]] name = "mdbook-pandoc" -version = "0.6.4" +version = "0.7.0" dependencies = [ "aho-corasick", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 70164e5..b83d5e8 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.6.4" +version = "0.7.0" rust-version = "1.74.0" edition = "2021" authors = ["Max Heller "]