All Versions
17
Latest Version
Avg Release Cycle
77 days
Latest Release
1326 days ago

Changelog History
Page 1

  • v0.8.0 Changes

    September 01, 2020

    ๐Ÿš€ This release brings support for markdown smart punctuation. Further, it comes with a renewed design for broken link callbacks. Finally, it fixes a few minor parsing bugs.

  • v0.7.2 Changes

    July 02, 2020

    ๐Ÿ”„ Changes:

    • ๐Ÿ“œ Minor parsing fixes
  • v0.7.1

    April 29, 2020
  • v0.7.0 Changes

    February 12, 2020

    ๐Ÿ“œ Minor parsing fixes and bug fixes. Now exposes the difference between delimited code blocks and indented code blocks.

  • v0.6.1

    November 10, 2019
  • v0.6.1.b Changes

    November 11, 2019

    ๐Ÿ“œ Minor parsing fixes.

  • v0.6.0 Changes

    September 06, 2019

    ๐Ÿš€ This is a backward incompatible release. However, most users will not experience any breakage. It also fixes some parser correctness bugs.

    ๐Ÿ’ฅ Breaking changes:

    • โฌ†๏ธ the get_offset method on the parser was removed. Its semantics were poorly defined and only provided users with the start offset of the next event. To get proper source mapping information which includes the entire source range for each event, upgrade the Parser to an OffsetIter using the into_offset_iter method. This produces an iterator over (Event, Range<usize>) tuples.
    • ๐Ÿšš the Event::HtmlBlock and Event::InlineHTML event variants were removed. Inline HTML is now represented by regular HTML events.
    • horizontal rules are now events, and no longer (empty) tags.
    • Event::Header(i32) has been replaced by Event::Heading(u32).
    • the starting index of numbered lists is now represented by a u64 instead of a usize.
    • ๐Ÿšš the FIRST_PASS option has been removed.
  • v0.5.3 Changes

    July 18, 2019

    ๐Ÿ”„ Changes:

    • โž• Addresses rare panics in emphasis routine
    • ๐Ÿ›  Fixes some parser correctness issues
    • ๐Ÿ›  Small bugfixes
  • v0.5.2 Changes

    May 28, 2019

    ๐Ÿ”„ Changes:

    • ๐Ÿ› bug fixes
    • ๐Ÿ‘Œ improved parsing correctness
  • v0.5.1 Changes

    May 13, 2019

    ๐Ÿ”„ Changes:

    • โœ‚ removes last remaining unsafe block in default mode (without simd feature);
    • ๐Ÿ›  various bug fixes and guards against quadratic behavior;
    • ๐ŸŽ very minor performance bumps.