Releases: theacodes/cmarkgfm
Releases · theacodes/cmarkgfm
October 22th, 2025
What's Changed
- Use unique names for artifact uploads by @fynnsu in #85
- fix: restore inclusion of header files in sdist by @miketheman in #86
- chore: update github actions windows runner by @miketheman in #87
New Contributors
Full Changelog: 2025.10.20...2025.10.22
October 20th, 2025
What's Changed
- Added support for Python 3.14 by @miketheman in #77
- Added support for Python 3.14t (free threaded) by @miketheman in #79
- Dropped support for Python 3.6, 3.7, and 3.8 by @miketheman in #73
- Syntax cleanup by @miketheman in #78 and #81
- Moved move most config to
pyproject.tomlby @miketheman in #80
New Contributors
Full Changelog: 2024.11.20...2025.10.20
November 20th, 2024
January 14th, 2024
October 27th, 2022
- Build wheels for Python 3.11
- Update cmark-gfm from
0.29.0.gfm.3to0.29.0.gfm.6
October 26th, 2022
- Create wheels for Python 3.11
March 4th, 2022
- Updated cmark to 0.29.0.gfm.3
- Switched to calendar versioning
0.7.0
0.6.0
The output generated by cmarkgfm.github_flavored_markdown_to_html for code blocks has changed to be in line with that of github.com.
This change may break existing css rules as code blocks were generated differently for cmarkgfm<0.6.0.
- <pre><code class="language-python">print('hello')
+ <pre lang="python"><code>print('hello'
</code></pre>Thank you @nschloe for this contribution.