Skip to content

v10.0.0

Compare
Choose a tag to compare
@Byron Byron released this 28 Jan 07:42
· 188 commits to main since this release
44c5286

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 removing State parameter, introduce cmark_resume(…).

    The reason for doing it this way around causing a breaking change is
    the change of behaviour for cmark_resume, which now returns a state
    instance that needs a finalize() 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
  • Uncategorized
    • write changelog prior to release (e9f809f)
    • Merge pull request #41 from aogier/bugfix/40-shortcut_code (7ee11da)
    • Simplify cmark(…) by removing State parameter, introduce cmark_resume(…). (7166abe)
    • Fix changelog (84acaf3)
    • properly render shortcut links w/ code formatting (6a42312)