Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

Releases: sscpac/statick-md

v0.0.8

28 May 22:24
92cd9d5
Compare
Choose a tag to compare

Changed

  • Switch type hints from comment style to inline style.
  • Renaming plugin directories to match Statick's directory structure.
  • Upgraded version of markdownlint-cli used in Actions to the latest available.
  • For testing with Actions, the installed version of Node was upgraded from v10 to v14.
    Node v10 is no longer supported.
    Node v14 is recommended by the developers as it is a long-term support (LTS) release.

Removed

  • Remove testing support for Ubuntu 16.04 and Python 3.5.
    There is no guarantee Statick will work in those environments any longer.

v0.0.7

22 Jan 17:15
4fde00b
Compare
Choose a tag to compare

This is expected to be the final release that supports Python 3.5.
Ubuntu 16.04 has reached end-of-life status.
The final release of ROS Kinetic has been made.
See sscpac/statick#290 for a discussion on Python 3.5 support in Statick.

Changed

  • Turned off line length checks for Markdown code blocks.

Added

  • Using type hints as introduced in Python 3.5 and improved in Python 3.6.
    Type hints are described in PEP 438
    and PEP 484.
    They provide static typing for methods and variables.
    The use of mypy is encouraged to look for errors in expected types.

Removed

  • No longer supporting pypy3 due to issues with type hints and mypy.

v0.0.6

19 Jan 19:16
b561b2f
Compare
Choose a tag to compare

Changed

  • Convert use of print() and show tool output flags to the built-in Python logging module. (Thomas Denewiler, @tdenewiler)

v0.0.5

22 Dec 23:59
e7cff89
Compare
Choose a tag to compare

Added

  • Take advantange of new DiscoveryPlugin.find_files function that only walks a package's path once instead of
    in each discovery plugin.
    This should lead to a speed improvement in the discovery phase. (@xydesa)

v0.0.4

06 Apr 23:37
13701e8
Compare
Choose a tag to compare

Fixed

  • Fixed installation of config and profile files from this package.

v0.0.3

06 Apr 22:54
7b6784f
Compare
Choose a tag to compare

Added

  • Installing .markdownlintrc file with this package.
  • Formatted all code using black. Added Github Action to ensure future commits are consistent with black formatting.
  • Using markdownlint statick plugin to check documentation files.

Changed

  • Switched from travis ci to github actions.

Fixed

  • Limit discovery plugins to only markdown files in md config levels. (@tdenewiler)