summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2023-11-29 22:54:44 +0000
committerGitHub <noreply@github.com>2023-11-29 22:54:44 +0000
commitb7f46213c7df8f499eca0c82e7b41804cc15e369 (patch)
tree558069748a7053f2f85995991fdb3bfd108f1910
parent14826db606acc20fb9c2f9747b1ca24ee32a3a05 (diff)
parentaa8982bdb465c7a25d772700ffc8c68b7bf4eaa7 (diff)
Merge pull request #2253 from ehuss/bump-versionv0.4.36
Update to 0.4.36
-rw-r--r--CHANGELOG.md23
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--guide/src/continuous-integration.md2
4 files changed, 26 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 71e298b4..8a515bc5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,28 @@
# Changelog
+## mdBook 0.4.36
+[v0.4.35...v0.4.36](https://github.com/rust-lang/mdBook/compare/v0.4.35...v0.4.36)
+
+### Added
+- Added Nim to the default highlighted languages.
+ [#2232](https://github.com/rust-lang/mdBook/pull/2232)
+- Added a small indicator for the sidebar resize handle.
+ [#2209](https://github.com/rust-lang/mdBook/pull/2209)
+
+### Changed
+- Updated dependencies. MSRV raised to 1.70.0.
+ [#2173](https://github.com/rust-lang/mdBook/pull/2173)
+ [#2250](https://github.com/rust-lang/mdBook/pull/2250)
+ [#2252](https://github.com/rust-lang/mdBook/pull/2252)
+
+### Fixed
+- Fixed blank column in print page when the sidebar was visible.
+ [#2235](https://github.com/rust-lang/mdBook/pull/2235)
+- Fixed indentation of code blocks when Javascript is disabled.
+ [#2162](https://github.com/rust-lang/mdBook/pull/2162)
+- Fixed a panic when `mdbook serve` or `mdbook watch` were given certain kinds of paths.
+ [#2229](https://github.com/rust-lang/mdBook/pull/2229)
+
## mdBook 0.4.35
[v0.4.34...v0.4.35](https://github.com/rust-lang/mdBook/compare/v0.4.34...v0.4.35)
diff --git a/Cargo.lock b/Cargo.lock
index 8338f3ff..f536a16d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -938,7 +938,7 @@ dependencies = [
[[package]]
name = "mdbook"
-version = "0.4.35"
+version = "0.4.36"
dependencies = [
"ammonia",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index c0b17041..b5bf3471 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook"
-version = "0.4.35"
+version = "0.4.36"
authors = [
"Mathieu David <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>",
diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md
index 350cbc4d..27e78516 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.35/mdbook-v0.4.35-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
+curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.36/mdbook-v0.4.36-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
bin/mdbook build
```