Releases: Byron/pulldown-cmark-to-cmark
v10.0.2
Fixes
- support for backticks within inline-backticks, see this this
comment
for details.
Commit Statistics
- 3 commits contributed to the release over the course of 2 calendar days.
- 108 days passed between releases.
- 0 commits where understood as conventional.
- 0 issues like '(#ID)' where seen in commit messages
Commit Details
v10.0.1
Fixes
- add
cmark_resume()
, completing the API transition started with the major version change.
Commit Statistics
- 5 commits contributed to the release.
- 42 days passed between releases.
- 0 commits where understood as conventional.
- 0 issues like '(#ID)' where seen in commit messages
Commit Details
v10.0.0
Note that the breaking change is fixable by removing the last parameter from the cmark()
function if it was None
,
or using cmark_resume
instead.
New Features
- Formatting within links is no being preserved.
New Features (BREAKING)
-
Simplify
cmark(…)
by removingState
parameter, introducecmark_resume(…)
.The reason for doing it this way around causing a breaking change is
the change of behaviour forcmark_resume
, which now returns a state
instance that needs afinalize()
call to flush certain caches.Currently this is only used to write link blocks, after which the state
is still usable for future invocations if necessary.That way the caller has control over where to put link blocks, or other
items that should be placed at the end of a logical section.
Commit Statistics
- 5 commits contributed to the release over the course of 2 calendar days.
- 28 days passed between releases.
- 1 commit where understood as conventional.
- 0 issues like '(#ID)' where seen in commit messages
Commit Details
view details
v9.0.0
Bug Fixes
-
Shortcut handling is now using the
State
.This makes resumable event processing work as expected, even though
the output won't be similar as it will print shortcuts right after
all events have been processed and it's impossible to know
how often it will be called. -
Simplify
State
.Use an
Option
to get rid ofa boolean and make isuse impossible.
Commit Statistics
- 5 commits contributed to the release.
- 2 commits where understood as conventional.
- 1 unique issue was worked on: #39
Commit Details
v8.0.0
This release adds support for pulldown-cmark v0.9
, see the tracking issue for more information.
Commit Statistics
- 3 commits contributed to the release.
- 0 commits where understood as conventional.
- 0 issues like '(#ID)' where seen in commit messages
Commit Details
v7.1.1
Fixes
- Multiple shortcut links are now separated by newline.
Commit Statistics
- 2 commits contributed to the release.
- 0 commits where understood as conventional.
- 0 issues like '(#ID)' where seen in commit messages
Commit Details
v7.1.0
New Features
- Shortcut links are now printed at the end of the stream like one would expect (#33)
- email links are retained (#34)
- Now 422 of 649 common mark spec tests pass, up from 402.
Commit Statistics
- 5 commits contributed to the release.
- 0 commits where understood as conventional.
- 0 issues like '(#ID)' where seen in commit messages
Commit Details
view details
- Uncategorized
v7.0.0
The Options
type was updated in a breaking fashion to allow configuring certain tokens, e.g. the *
list token can now be configured as -
if desired.
Thanks to the author of this PR.
Commit Statistics
- 6 commits contributed to the release over the course of 53 calendar days.
- 0 commits where understood as conventional.
- 0 issues like '(#ID)' where seen in commit messages