summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2024-05-17 01:35:51 +0000
committerGitHub <noreply@github.com>2024-05-17 01:35:51 +0000
commit94b922d27aea47183ebf270e2f6f32561d960852 (patch)
tree4ff6a49e4831b4c396738ddac8d29e265f0b3aa2
parenta5d4d1e0ad0faa7ec2de175562e915c9dfe5ca9f (diff)
parent0a8f9a3f6b90c262e4c3e046fabb5042e4c2c11a (diff)
Merge pull request #2389 from ehuss/bump-versionHEADv0.4.40master
Update to 0.4.40
-rw-r--r--CHANGELOG.md10
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--guide/src/continuous-integration.md2
4 files changed, 12 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4b115caf..965e54c5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,15 @@
# Changelog
+## mdBook 0.4.40
+[v0.4.39...v0.4.40](https://github.com/rust-lang/mdBook/compare/v0.4.39...v0.4.40)
+
+### Fixed
+
+- Reverted the update to pulldown-cmark which broke the semver API.
+ [#2388](https://github.com/rust-lang/mdBook/pull/2388)
+
## mdBook 0.4.39
-[v0.4.37...v0.4.39](https://github.com/rust-lang/mdBook/compare/v0.4.38...v0.4.39)
+[v0.4.38...v0.4.39](https://github.com/rust-lang/mdBook/compare/v0.4.38...v0.4.39)
### Fixed
diff --git a/Cargo.lock b/Cargo.lock
index d627e7f3..3d4091d9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -977,7 +977,7 @@ dependencies = [
[[package]]
name = "mdbook"
-version = "0.4.39"
+version = "0.4.40"
dependencies = [
"ammonia",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index bcc9e4f3..8b805d38 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook"
-version = "0.4.39"
+version = "0.4.40"
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 af9ba69a..25168869 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.39/mdbook-v0.4.39-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
+curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
bin/mdbook build
```