Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep version 0.13.0 #467

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
# Change Log

## Unreleased
## [v0.13.0] (2023-10-01)

### Rules Added

* MD055 - Tables: Each row must start and end with a '|' (PR #464)
* MD056 - Tables: Number of columns is the same for all rows (PR #464)
* MD057 - Tables: In the second row every column must have at least '---', possibly surrounded with alignment ':' chars (PR #464)

### Added

* Add SARIF output (PR #459)
* Document DCO process better (PRs #448 and #449)

### Changed

* MD009 - Allow exactly 2 trailing spaces by default (PR #452)
* MD033 - Add `allowed_elements` parameter (PR #450)
* Updated build instructions (PR #431)

### Fixed

* MD027 - handle anchor elements correctly (PR #463)
* Fix examples for RULES.md for MD007 (PR #462)
* Fix links to use https instead of http (PR #447)
* Make RULES.md comply with our own rules (PR #439)
* Fix docker builds (#429)

## [v0.12.0] (2022-10-17)

Expand Down Expand Up @@ -281,6 +306,7 @@
* MD030 - Spaces after list markers

[Unreleased]: https://github.com/markdownlint/markdownlint/tree/main
[v0.13.0]: https://github.com/markdownlint/markdownlint/tree/v0.13.0
[v0.12.0]: https://github.com/markdownlint/markdownlint/tree/v0.12.0
[v0.11.0]: https://github.com/markdownlint/markdownlint/tree/v0.11.0
[v0.10.0]: https://github.com/markdownlint/markdownlint/tree/v0.10.0
Expand Down
2 changes: 1 addition & 1 deletion lib/mdl/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MarkdownLint
VERSION = '0.12.0'.freeze
VERSION = '0.13.0'.freeze
end
Loading