diff --git a/docs/conf.py b/docs/conf.py index 270b9d7..41a0d39 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = "djlint" copyright = "2021, Riverside Healthcare" author = "Christopher Pickering" -release = "0.5.1" +release = "0.5.2" version = release # -- General configuration --------------------------------------------------- diff --git a/docs/djlint/changelog.rst b/docs/djlint/changelog.rst index 6f454a7..355a6cb 100644 --- a/docs/djlint/changelog.rst +++ b/docs/djlint/changelog.rst @@ -1,8 +1,8 @@ Changelog ========= -Next Release ------------- +0.5.2 +----- - Split ``alt`` requirement from H006 to H013 - Added optional custom rules file - Added ``golang`` as profile option @@ -10,6 +10,8 @@ Next Release - Added default text to ``--indent`` and ``-e`` options - Update url rules to accept # - Fixed file encoding on Windows OS +- Fix single line template tag regex +- Fix ``blank_line_after_tag`` for tags with leading space 0.5.1 ----- diff --git a/pyproject.toml b/pyproject.toml index 727a8dc..13eb769 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name="djlint" -version="0.5.1" +version="0.5.2" description="HTML Template Linter and Formatter" license="GPL-3.0-or-later" authors=["Christopher Pickering "]