All Versions
13
Latest Version
Avg Release Cycle
38 days
Latest Release
-

Changelog History
Page 1

  • v0.4.1 Changes

    ๐Ÿš€ To be released.

  • v0.4.0 Changes

    August 31, 2018

    ๐Ÿš€ Released on September 1, 2018.

    • ๐Ÿ“ฆ Became internally independent from the range library.
    • Became to use GHC 8.4 internally.
    • ๐Ÿง The officially distributed executable binaries for Linux became independent from glibc again, and statically linked to musl instead.
  • v0.3.3 Changes

    May 15, 2018

    ๐Ÿš€ Released on May 16, 2018.

    • The officially distributed executable binaries for Linux became dependent on glibc.

    • Fixed a bug that it had failed to scan if any file in a change set is deleted.

  • v0.3.2 Changes

    November 03, 2017

    ๐Ÿš€ Released on November 4, 2017.

    • Relicensed from GPLv3+ to AGPLv3+ since [diff-parse][] library that Checkmate depends on has been licensed under AGPLv3.

    • Fixed a bug that the diff parser had failed with a result of endOfInput when the input diff contains file renames. It was a bug of [diff-parse][] library, and a patch was needed to fix this.

    ๐Ÿ“œ [diff-parse]: https://github.com/mulby/diff-parse

  • v0.3.1 Changes

    November 02, 2017

    ๐Ÿš€ Released on November 3, 2017.

    • Fixed a bug that checkmate github-travis and checkmate github-circle commands were prone to reach rate limit of GitHub API due to unauthenticated request for getting metadata of the pull request.
  • v0.3.0 Changes

    October 20, 2017

    ๐Ÿš€ Released on October 21, 2017.

    Frontend

    • Added a new filename .check besides CHECK as directory-level checklist file.

    • checkmate github command became to leave no comment when there are nothing to CHECK corresponding to the given diff. It also removes the existing comment previously left by Checkmate on the same pull request.

    • Added checkmate github-travis and checkmate github-circle commands, shortcuts of checkmate github for Travis CI and Circle CI integration. It even doesn't need the result of git diff.

    • checkmate and its subcommands became to terminate with a proper non-zero exit code and print messages to /dev/stderr instead of /dev/stdout when it fails to read diff.

    Internals

    • Added Checkmate.Publisher and Checkmate.Publisher.GitHub module.
  • v0.2.1 Changes

    September 25, 2017

    ๐Ÿš€ Released on September 26, 2017.

    • Fixed a parser bug which had scanned continuous inline comments of unmatched styles, e.g.:

      // CHECK This line is scanned.
      // This line also is scanned.
      -- This line had been scanned, but the parser is fixed
      -- so that it isn't scanned anymore.
      
    • GitHub Flavored Markdown renderer (checkmate gfm and Checkmate.Rendrer.toGFMarkdown) became to ignore soft linebreaks to be consistent with CommonMark renderer.

  • v0.2.0 Changes

    September 24, 2017

    ๐Ÿš€ Released on September 25, 2017.

    • Now CHECK comments in source codes can be multiline. The following patterns are supported:

      • /*
        CHECK Lorem ipsum dolor sit amet, per facilis reprimique ut,
        ei agam invenire mel.
        
        Tacimates nominati vix ut, ea iudicabit prodesset deseruisse duo.
        */
        
        • ~~~ c // CHECK Lorem ipsum dolor sit amet, per facilis reprimique ut, // ei agam invenire mel. // // Tacimates nominati vix ut, ea iudicabit prodesset deseruisse duo. ~~~
    • CHECK keywords with a colon (i.e. CHECK:) became matched.

  • v0.1.4 Changes

    September 20, 2017

    ๐Ÿš€ Released on September 21, 2017.

    • Fixed a broken build of checkmate binary on the download page. It was crashed on Linux distros that glibc is unavailable.
  • v0.1.3 Changes

    September 20, 2017

    ๐Ÿš€ Released on September 20, 2017.

    • Fixed a broken build of checkmate binary on the download page.