diff --git a/CHANGELOG.md b/CHANGELOG.md index 1624394..538fe1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ ## Unreleased +## [v0.13.1](https://github.com/thibaudcolas/curlylint/releases/tag/v0.13.1) 2022-03-30 + +### Fixed + +- Update `patch_click` to fix compatibility issue with click 8.1.0. Fix [#132](https://github.com/thibaudcolas/curlylint/issues/132) ([#133](https://github.com/thibaudcolas/curlylint/pull/133)). Thanks to [@jmsmkn](https://github.com/jmsmkn) and [@adamchainz](https://github.com/adamchainz)! +- Fix incorrect documentation for [`no_autofocus`](https://www.curlylint.org/docs/rules/no_autofocus) and [`tabindex_no_positive`](https://www.curlylint.org/docs/rules/tabindex_no_positive). + ## [v0.13.0](https://github.com/thibaudcolas/curlylint/releases/tag/v0.13.0) 2021-04-25 This release comes with a blog post! Read on [Quality-of-life improvements](https://www.curlylint.org/blog/quality-of-life-improvements). diff --git a/curlylint/__init__.py b/curlylint/__init__.py index 3527c36..dfcfb36 100644 --- a/curlylint/__init__.py +++ b/curlylint/__init__.py @@ -1,5 +1,5 @@ __name__ = "curlylint" -__version__ = "0.13.0" +__version__ = "0.13.1" __description__ = "{{ 🎀}} Experimental HTML templates linting for Jinja, Nunjucks, Django templates, Twig, Liquid" __author__ = "Thibaud Colas" __author_email__ = "thibaudcolas@gmail.com"