Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Oct 21, 2024
1 parent 9764caa commit 6feb6c4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

[Semantic Versioning](https://semver.org/)

## [0.5.1] - 2024-10-21

- Drop Python 3.7 and 3.8 support.
- Bump pulldown-cmark from 0.12.0 to 0.12.2. See <https://github.com/pulldown-cmark/pulldown-cmark/releases/tag/v0.12.1> and <https://github.com/pulldown-cmark/pulldown-cmark/releases/tag/v0.12.2>.

## [0.5.0] - 2024-08-20

- Bump pulldown-cmark from 0.11.0 to 0.12.0. See <https://github.com/pulldown-cmark/pulldown-cmark/releases/tag/v0.12.0>.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyromark"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "MIT"
include = [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["maturin>=1,<2"]

[project]
name = "pyromark"
version = "0.5.0"
version = "0.5.1"
description = "Blazingly fast Markdown parser"
readme = "README.md"
keywords = ["converter", "html"]
Expand Down
16 changes: 8 additions & 8 deletions python/pyromark/_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Extensions(IntFlag):
ENABLE_TABLES = 1 << 1
"""<https://github.github.com/gfm/#tables-extension->"""
ENABLE_FOOTNOTES = 1 << 2
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_FOOTNOTES>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_FOOTNOTES>"""
ENABLE_STRIKETHROUGH = 1 << 3
"""<https://github.github.com/gfm/#strikethrough-extension->"""
ENABLE_TASKLISTS = 1 << 4
Expand All @@ -47,16 +47,16 @@ class Extensions(IntFlag):
| --- | — |
"""
ENABLE_HEADING_ATTRIBUTES = 1 << 6
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_HEADING_ATTRIBUTES>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_HEADING_ATTRIBUTES>"""
ENABLE_YAML_STYLE_METADATA_BLOCKS = 1 << 7
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_YAML_STYLE_METADATA_BLOCKS>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_YAML_STYLE_METADATA_BLOCKS>"""
ENABLE_PLUSES_DELIMITED_METADATA_BLOCKS = 1 << 8
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_PLUSES_DELIMITED_METADATA_BLOCKS>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_PLUSES_DELIMITED_METADATA_BLOCKS>"""
ENABLE_OLD_FOOTNOTES = (1 << 9) | (1 << 2)
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_OLD_FOOTNOTES>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_OLD_FOOTNOTES>"""
ENABLE_MATH = 1 << 10
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_MATH>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_MATH>"""
ENABLE_GFM = 1 << 11
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_GFM>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_GFM>"""
ENABLE_DEFINITION_LIST = 1 << 12
"""<https://docs.rs/pulldown-cmark/0.12.0/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_DEFINITION_LIST>"""
"""<https://docs.rs/pulldown-cmark/0.12.2/pulldown_cmark/struct.Options.html#associatedconstant.ENABLE_DEFINITION_LIST>"""
2 changes: 1 addition & 1 deletion uv.lock

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

0 comments on commit 6feb6c4

Please sign in to comment.