summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2023-02-08 16:09:45 -0800
committerGitHub <noreply@github.com>2023-02-08 16:09:45 -0800
commit39664985ba4eeacf780c6bb47c984236f5a20d5d (patch)
tree89a2bcc952bda8a152ede5f478e9212c2e431ec9
parent2c710d3b7db53fea909e4fc5c7b793eb42b5191f (diff)
parentab1e9694bc9a5bd9f7e85e42c0050887083be05e (diff)
Merge pull request #2012 from ehuss/bump-versionv0.4.26
Update to 0.4.26
-rw-r--r--CHANGELOG.md19
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--guide/src/continuous-integration.md2
4 files changed, 22 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fd7093d5..6a7eb05e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,24 @@
# Changelog
+## mdBook 0.4.26
+[v0.4.25...v0.4.26](https://github.com/rust-lang/mdBook/compare/v0.4.25...v0.4.26)
+
+### Changed
+- Removed custom scrollbars for webkit browsers
+ [#1961](https://github.com/rust-lang/mdBook/pull/1961)
+- Updated some dependencies
+ [#1998](https://github.com/rust-lang/mdBook/pull/1998)
+ [#2009](https://github.com/rust-lang/mdBook/pull/2009)
+ [#2011](https://github.com/rust-lang/mdBook/pull/2011)
+- Fonts are now part of the theme.
+ The `output.html.copy-fonts` option has been deprecated.
+ To define custom fonts, be sure to define `theme/fonts.css`.
+ [#1987](https://github.com/rust-lang/mdBook/pull/1987)
+
+### Fixed
+- Fixed overflow viewport issue with mobile Safari
+ [#1994](https://github.com/rust-lang/mdBook/pull/1994)
+
## mdBook 0.4.25
[e14d381...1ba74a3](https://github.com/rust-lang/mdBook/compare/e14d381...1ba74a3)
diff --git a/Cargo.lock b/Cargo.lock
index e3011508..9a6dd2e2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -903,7 +903,7 @@ dependencies = [
[[package]]
name = "mdbook"
-version = "0.4.25"
+version = "0.4.26"
dependencies = [
"ammonia",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index 4c9a64c7..e84b09fa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook"
-version = "0.4.25"
+version = "0.4.26"
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 a0752a20..8c25fdc1 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.25/mdbook-v0.4.25-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
+curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.26/mdbook-v0.4.26-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
bin/mdbook build
```