Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 934 Bytes

CHANGELOG.md

File metadata and controls

38 lines (23 loc) · 934 Bytes

Commit Format

0.2.1

Fixed

  • bd1a3d5 patch - Paragraph flag doesn't join link references on multiple lines.

0.2.0

Added

  • 5c3aed6 minor - Add paragraph flag to format message body output to join paragraph lines. This is similar to how GitHub now formats Pull Requests with a single commit. Use -p/--paragraph to use this feature.

    Given a commit with the message body of two lines:

    Line 1.
    Line 2.
    
    - Item 1.
    - Item 2.
    

    This is output as:

    Line 1. Line 2.
    
    - Item 1.
    - Item 2.
    

    Other Markdown syntax, like tables, lists, code blocks, etc. are all kept in their original format in the output. Their lines are not joined into one line.

0.1.0

Initial release.