This repository has been archived by the owner on Feb 14, 2025. It is now read-only.
Releases: sscpac/statick-md
Releases · sscpac/statick-md
v0.0.8
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
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
Changed
- Convert use of print() and show tool output flags to the built-in Python logging module. (Thomas Denewiler, @tdenewiler)
v0.0.5
v0.0.4
v0.0.3
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)