diff --git a/CHANGELOG.md b/CHANGELOG.md index 51a220cf..97856118 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## mdBook 0.4.48 +[v0.4.47...v0.4.48](https://github.com/rust-lang/mdBook/compare/v0.4.47...v0.4.48) + +### Added + +- Footnotes now have back-reference links. These links bring the reader back to the original location. As part of this change, footnotes are now only rendered at the bottom of the page. This also includes some styling updates and fixes for footnote rendering. + [#2626](https://github.com/rust-lang/mdBook/pull/2626) +- Added an "Auto" theme selection option which will default to the system-preferred mode. This will also automatically switch when the system changes the preferred mode. + [#2576](https://github.com/rust-lang/mdBook/pull/2576) + +### Changed + +- The `searchindex.json` file has been removed; only the `searchindex.js` file will be generated. + [#2552](https://github.com/rust-lang/mdBook/pull/2552) +- Updated Javascript code to use eslint. + [#2554](https://github.com/rust-lang/mdBook/pull/2554) +- An error is generated if there are duplicate files in `SUMMARY.md`. + [#2613](https://github.com/rust-lang/mdBook/pull/2613) + ## mdBook 0.4.47 [v0.4.46...v0.4.47](https://github.com/rust-lang/mdBook/compare/v0.4.46...v0.4.47) diff --git a/Cargo.lock b/Cargo.lock index ce9bea4f..8f78b569 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.47" +version = "0.4.48" dependencies = [ "ammonia", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 0044fd2a..d7d46b77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"] [package] name = "mdbook" -version = "0.4.47" +version = "0.4.48" authors = [ "Mathieu David ", "Michael-F-Bryan ", diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index fd7a60c9..f092fa96 100644 --- a/guide/src/continuous-integration.md +++ b/guide/src/continuous-integration.md @@ -21,7 +21,7 @@ A simple approach would be to use the popular `curl` CLI tool to download the ex ```sh mkdir bin -curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.47/mdbook-v0.4.47-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin +curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.48/mdbook-v0.4.48-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin bin/mdbook build ```