Skip to content

Releases: rust-lang/mdBook

v0.3.6

19 Mar 19:50

Choose a tag to compare

v0.3.5

11 Nov 21:37

Choose a tag to compare

v0.3.4

29 Oct 17:10

Choose a tag to compare

v0.3.3

26 Oct 19:17

Choose a tag to compare

v0.3.2

21 Oct 19:38
f04d7b8

Choose a tag to compare

v0.3.1

15 Jul 21:59
7c4d207

Choose a tag to compare

v0.3.0

18 Jun 23:33
69a08ef

Choose a tag to compare

v0.2.1

22 Aug 14:04
v0.2.1
7e2e095

Choose a tag to compare

  • Update to handlebars-rs 1.0 (#761)
  • Fix table colors, broken by Stylus -> CSS transition (#765)

v0.2.0

03 Aug 00:37
v0.2.0
91ffca1

Choose a tag to compare

Breaking Changes

Links

This release changes how links are handled in mdBook. Previously, relative links were interpreted relative to the book's root. In 0.2.0+ links are relative to the page they are in. This has several advantages, such as making links work in other markdown viewers like GitHub. You will likely have to change links in your book to accommodate this change. For example, a book with this layout:

chapter_1/
    section_1.md
    section_2.md
SUMMARY.md

Previously a link in section_1.md to section_2.md would look like this:

[section_2](chapter_1/section_2.md)

Now it must be changed to this:

[section_2](section_2.md)

Commands

  • mdbook test --library-path now accepts a comma-delimited list of arguments rather than taking all following arguments. This makes it easier to handle the trailing book directory argument without always needing to put -- before it. Multiple instances of the option continue to be accepted: mdbook test -L foo -L bar.

  • mdbook serve has some of its options renamed for clarity. See mdbook help serve for details.

Other Major Changes

  • Escaped includes (\{{#include file.rs}}) will now render correctly (f30ce01).
  • index.html will now render correctly when the book's first section is inside a subdirectory (#756).
  • Embedded rust playpens now use the "stable" playground API (#754).

v0.1.10 (yanked)

31 Jul 00:45
v0.1.10
add23a4

Choose a tag to compare

v0.1.10 (yanked) Pre-release
Pre-release

Known Regression

This release has been yanked due to a regression introduced in 0.1.9. See the 0.1.9 release notes for more information.

Major Changes

  • Convert Stylus to CSS (#743)
  • Fix runnable Rust code blocks not executing (#751)
  • Remove hit-test dead-space between menu icon buttons (#752)