Skip to content

Commit

Permalink
Upgrade pulldown-cmark from 0.11.2 to 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
zoni committed Aug 25, 2024
1 parent e173c32 commit 6f0401b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ gumdrop = "0.8.1"
ignore = "0.4.22"
pathdiff = "0.2.1"
percent-encoding = "2.3.1"
pulldown-cmark = "0.11.0"
pulldown-cmark-to-cmark = "15.0.0"
pulldown-cmark = "0.12.0"
pulldown-cmark-to-cmark = "16.0.0"
rayon = "1.10.0"
regex = "1.10.5"
serde_yaml = "0.9.34"
Expand Down
2 changes: 1 addition & 1 deletion changelog.d/252.breaking.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Upgrade [pulldown-cmark](https://crates.io/crates/pulldown-cmark) from 0.9 to 0.11
Upgrade [pulldown-cmark](https://crates.io/crates/pulldown-cmark) from 0.9 to 0.12

pulldown-cmark is the Markdown/CommonMark parser that is used to read and convert notes (together with [pulldown-cmark-to-cmark](https://crates.io/crates/pulldown-cmark-to-cmark)).

Expand Down
1 change: 1 addition & 0 deletions changelog.d/285.breaking.md
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -978,6 +978,9 @@ fn tag_to_owned<'a>(tag: Tag<'_>) -> Tag<'a> {
},
Tag::HtmlBlock => Tag::HtmlBlock,
Tag::MetadataBlock(metadata_block_kind) => Tag::MetadataBlock(metadata_block_kind),
Tag::DefinitionList => Tag::DefinitionList,
Tag::DefinitionListTitle => Tag::DefinitionListTitle,
Tag::DefinitionListDefinition => Tag::DefinitionListDefinition,
}
}

Expand Down

0 comments on commit 6f0401b

Please sign in to comment.