Skip to content

Commit 98cc53c

Browse files
authored
Merge pull request #620 from kivikakk/release/v0.44.0
Release v0.44.0.
2 parents db11c54 + 97120bb commit 98cc53c

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,24 @@ Categories to use in this document, and the order in which to give them:
1111
* Build changes
1212
* Behind the scenes
1313

14-
# [v0.44.0] - unreleased
14+
15+
# [v0.44.0] - 2025-10-14
16+
17+
Parser changes:
18+
19+
* Autolink validation is now stricter in the default mode, to maintain conformance with the GitHub Flavored Markdown autolinks extension spec. Those parses which previously worked but no longer do --- such as `http://localhost` (!), `www.com` (!?), or `https://` (!?!) --- are now part of the `relaxed_autolinks` option. See more discussion in the PR. (by @chamlis in https://github.com/kivikakk/comrak/pull/618)
20+
21+
New APIs:
22+
23+
* You can write footnotes with their body inline by enabling the `inline_footnotes` extension and using the syntax `^[footnote content]` (by @sheremetyev in https://github.com/kivikakk/comrak/pull/619)
24+
25+
## New Contributors
26+
27+
* @sheremetyev made their first contribution in https://github.com/kivikakk/comrak/pull/619
28+
* @chamlis made their first contribution in https://github.com/kivikakk/comrak/pull/618
29+
30+
Diff: https://github.com/kivikakk/comrak/compare/v0.43.0...v0.44.0
31+
1532

1633
# [v0.43.0] - 2025-09-29
1734

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Specify it as a requirement in `Cargo.toml`:
1616

1717
``` toml
1818
[dependencies]
19-
comrak = "0.43"
19+
comrak = "0.44"
2020
```
2121

2222
Comrak's library supports Rust <span class="msrv">1.65</span>+.
@@ -115,9 +115,9 @@ Options:
115115
Multiple extensions can be delimited with ",", e.g. --extension strikethrough,table
116116
117117
[possible values: strikethrough, tagfilter, table, autolink, tasklist, superscript,
118-
footnotes, description-lists, multiline-block-quotes, math-dollars, math-code,
119-
wikilinks-title-after-pipe, wikilinks-title-before-pipe, underline, subscript, spoiler,
120-
greentext, alerts, cjk-friendly-emphasis]
118+
footnotes, inline-footnotes, description-lists, multiline-block-quotes, math-dollars,
119+
math-code, wikilinks-title-after-pipe, wikilinks-title-before-pipe, underline, subscript,
120+
spoiler, greentext, alerts, cjk-friendly-emphasis]
121121
122122
-t, --to <FORMAT>
123123
Specify output format
@@ -255,6 +255,7 @@ Comrak additionally supports its own extensions, which are yet to be specced out
255255
- Superscript
256256
- Header IDs
257257
- Footnotes
258+
- Inline footnotes
258259
- Description lists
259260
- Front matter
260261
- Multi-line blockquotes

0 commit comments

Comments
 (0)