summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2022-12-15 07:14:13 -0800
committerGitHub <noreply@github.com>2022-12-15 07:14:13 -0800
commite14d38194f542e5f5472727a222e00f355a14cd1 (patch)
treeec4fa089e28cc0e439193315d8b526421733e970
parent8767ebf8351f86208c10fe88762eb7b185d632fd (diff)
parent294aad092e832b10b1a2cdb65a0e7244aca62a28 (diff)
Merge pull request #1956 from ehuss/bump-versionv0.4.24
Update to 0.4.24
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--guide/src/continuous-integration.md2
4 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee1099b8..8947a6d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## mdBook 0.4.24
+[eb77083...8767ebf](https://github.com/rust-lang/mdBook/compare/eb77083...8767ebf)
+
+### Fixed
+- The precompiled linux-gnu mdbook binary available on [GitHub Releases](https://github.com/rust-lang/mdBook/releases) inadvertently switched to a newer version of glibc. This release goes back to an older version that should be more compatible on older versions of Linux.
+ [#1955](https://github.com/rust-lang/mdBook/pull/1955)
+
## mdBook 0.4.23
[678b469...68a75da](https://github.com/rust-lang/mdBook/compare/678b469...68a75da)
diff --git a/Cargo.lock b/Cargo.lock
index 5221d2ab..ea16cddc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -923,7 +923,7 @@ dependencies = [
[[package]]
name = "mdbook"
-version = "0.4.23"
+version = "0.4.24"
dependencies = [
"ammonia",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index be5434ec..31995efc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook"
-version = "0.4.23"
+version = "0.4.24"
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 75c5d8d5..b3abcdf9 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.23/mdbook-v0.4.23-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
+curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.24/mdbook-v0.4.24-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
bin/mdbook build
```