Skip to content

Commit fff6087

Browse files
authored
Merge pull request #2929 from ehuss/bump-version
Update to 0.5.0-beta.2.
2 parents ab1325b + 922f0d8 commit fff6087

File tree

10 files changed

+65
-23
lines changed

10 files changed

+65
-23
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ The following is a summary of the changes that may require your attention when u
6363
[#2922](https://github.com/rust-lang/mdBook/pull/2922)
6464
- Headers that start or end with HTML characters like `<`, `&`, or `>` now replace those characters in the link ID with `-` instead of being stripped.
6565
[#2844](https://github.com/rust-lang/mdBook/pull/2844)
66+
- Headers are no longer modified if the tag is manually written HTML.
67+
[#2913](https://github.com/rust-lang/mdBook/pull/2913)
6668

6769
### CLI changes
6870

@@ -107,6 +109,46 @@ The following is a summary of the changes that may require your attention when u
107109
- Various functions in the `utils::fs` module have been removed, renamed, or reworked.
108110
- Most of the functions in the `utils` module have been moved, removed, or made private.
109111

112+
## mdBook 0.5.0-beta.2
113+
[v0.5.0-beta.1...v0.5.0-beta.2](https://github.com/rust-lang/mdBook/compare/v0.5.0-beta.1...v0.5.0-beta.2)
114+
115+
### Added
116+
117+
- Added a warning when a Font Awesome icon is missing.
118+
[#2915](https://github.com/rust-lang/mdBook/pull/2915)
119+
- Added some trace logging for event processing.
120+
[#2911](https://github.com/rust-lang/mdBook/pull/2911)
121+
- Added `Config::contains_key`.
122+
[#2910](https://github.com/rust-lang/mdBook/pull/2910)
123+
124+
### Changed
125+
126+
- Heading IDs are now lowercase.
127+
[#2922](https://github.com/rust-lang/mdBook/pull/2922)
128+
- Updated cargo dependencies.
129+
[#2916](https://github.com/rust-lang/mdBook/pull/2916)
130+
- Removed italics for in quotes/comments in code blocks with the `ayu` theme.
131+
[#2904](https://github.com/rust-lang/mdBook/pull/2904)
132+
- Exposed "search" feature from mdbook-driver.
133+
[#2907](https://github.com/rust-lang/mdBook/pull/2907)
134+
135+
### Fixed
136+
137+
- Fixed rust fenced code blocks with an indent.
138+
[#2905](https://github.com/rust-lang/mdBook/pull/2905)
139+
- Headers and `dt` tags are no longer modified if the tag is manually written HTML.
140+
[#2913](https://github.com/rust-lang/mdBook/pull/2913)
141+
- Fixed print page links for internal links to non-chapters.
142+
[#2914](https://github.com/rust-lang/mdBook/pull/2914)
143+
- Better handling for unbalanced HTML tags.
144+
[#2924](https://github.com/rust-lang/mdBook/pull/2924)
145+
- Handle unclosed HTML tags inside a markdown element.
146+
[#2927](https://github.com/rust-lang/mdBook/pull/2927)
147+
- Fixed missing font-awesome icons in the guide.
148+
[#2926](https://github.com/rust-lang/mdBook/pull/2926)
149+
- Hide the sidebar resize indicator when JS isn't available.
150+
[#2923](https://github.com/rust-lang/mdBook/pull/2923)
151+
110152
## mdBook 0.5.0-beta.1
111153
[v0.5.0-alpha.1...v0.5.0-beta.1](https://github.com/rust-lang/mdBook/compare/v0.5.0-alpha.1...v0.5.0-beta.1)
112154

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ hex = "0.4.3"
3939
html5ever = "0.35.0"
4040
indexmap = "2.12.0"
4141
ignore = "0.4.25"
42-
mdbook-core = { path = "crates/mdbook-core", version = "0.5.0-beta.1" }
43-
mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.0-beta.1" }
44-
mdbook-html = { path = "crates/mdbook-html", version = "0.5.0-beta.1" }
45-
mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.0-beta.1" }
46-
mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.0-beta.1" }
47-
mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.0-beta.1" }
48-
mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.0-beta.1" }
42+
mdbook-core = { path = "crates/mdbook-core", version = "0.5.0-beta.2" }
43+
mdbook-driver = { path = "crates/mdbook-driver", version = "0.5.0-beta.2" }
44+
mdbook-html = { path = "crates/mdbook-html", version = "0.5.0-beta.2" }
45+
mdbook-markdown = { path = "crates/mdbook-markdown", version = "0.5.0-beta.2" }
46+
mdbook-preprocessor = { path = "crates/mdbook-preprocessor", version = "0.5.0-beta.2" }
47+
mdbook-renderer = { path = "crates/mdbook-renderer", version = "0.5.0-beta.2" }
48+
mdbook-summary = { path = "crates/mdbook-summary", version = "0.5.0-beta.2" }
4949
memchr = "2.7.6"
5050
notify = "8.2.0"
5151
notify-debouncer-mini = "0.7.0"
@@ -71,7 +71,7 @@ walkdir = "2.5.0"
7171

7272
[package]
7373
name = "mdbook"
74-
version = "0.5.0-beta.1"
74+
version = "0.5.0-beta.2"
7575
authors = [
7676
"Mathieu David <[email protected]>",
7777
"Michael-F-Bryan <[email protected]>",

crates/mdbook-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-core"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0-beta.2"
44
description = "The base support library for mdbook, intended for internal use only"
55
edition.workspace = true
66
license.workspace = true

crates/mdbook-driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-driver"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0-beta.2"
44
description = "High-level library for running mdBook"
55
edition.workspace = true
66
license.workspace = true

crates/mdbook-html/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-html"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0-beta.2"
44
description = "mdBook HTML renderer"
55
edition.workspace = true
66
license.workspace = true

crates/mdbook-markdown/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-markdown"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0-beta.2"
44
description = "Markdown processing used in mdBook"
55
edition.workspace = true
66
license.workspace = true

crates/mdbook-preprocessor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-preprocessor"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0-beta.2"
44
description = "Library to assist implementing an mdBook preprocessor"
55
edition.workspace = true
66
license.workspace = true

crates/mdbook-renderer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-renderer"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0-beta.2"
44
description = "Library to assist implementing an mdBook renderer"
55
edition.workspace = true
66
license.workspace = true

crates/mdbook-summary/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-summary"
3-
version = "0.5.0-beta.1"
3+
version = "0.5.0-beta.2"
44
description = "Summary parser for mdBook"
55
edition.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)