From 564ecf808119d21c9c1e7d401a7546ca29277cc7 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 16 Sep 2022 10:39:38 +0000 Subject: [PATCH 1/5] chore(release): 1.15.0 [skip ci] # [1.15.0](https://github.com/Riverside-Healthcare/djLint/compare/v1.14.2...v1.15.0) (2022-09-16) ### Bug Fixes * **formatter:** fixed formatting of repeating inline tags ([d31ce52](https://github.com/Riverside-Healthcare/djLint/commit/d31ce52b3b7952d9f7f6c8fc947c81967698fcf8)), closes [#387](https://github.com/Riverside-Healthcare/djLint/issues/387) ### Features * **linter t034:** added linter T034 to check for {% ... }% typo ([ecb95bb](https://github.com/Riverside-Healthcare/djLint/commit/ecb95bbee075c880942799a7c32246c6e8c0015f)), closes [#385](https://github.com/Riverside-Healthcare/djLint/issues/385) * **linter:** t002 added a few more tags to the check ([532c5b8](https://github.com/Riverside-Healthcare/djLint/commit/532c5b8d94d3c9f33b1644dee1167dc1b02c428a)), closes [#386](https://github.com/Riverside-Healthcare/djLint/issues/386) --- package.json | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4b3c27c..f45565f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "djlint", - "version": "1.14.2", + "version": "1.15.0", "description": "HTML Template Linter and Formatter", "main": "./bin/index.js", "directories": { diff --git a/pyproject.toml b/pyproject.toml index a1f776e..dc6d282 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name="djlint" -version="1.14.2" +version="1.15.0" description="HTML Template Linter and Formatter" license="GPL-3.0-or-later" authors=["Christopher Pickering "] From c5b466b73da3d1b0e7aef34998bbf5ca11329167 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 19 Sep 2022 09:16:58 +0000 Subject: [PATCH 2/5] chore(release): 1.16.0 [skip ci] # [1.16.0](https://github.com/Riverside-Healthcare/djLint/compare/v1.15.0...v1.16.0) (2022-09-19) ### Bug Fixes * **linter:** t002 ([190ad01](https://github.com/Riverside-Healthcare/djLint/commit/190ad01ff347c50949aca89f7af15a5131cafaa8)) ### Features * **linter:** added --statistics flag to print summary of linter findings ([489decb](https://github.com/Riverside-Healthcare/djLint/commit/489decb2e11d3d61873513af5d926cfd177196fb)), closes [#389](https://github.com/Riverside-Healthcare/djLint/issues/389) --- package.json | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f45565f..359a2a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "djlint", - "version": "1.15.0", + "version": "1.16.0", "description": "HTML Template Linter and Formatter", "main": "./bin/index.js", "directories": { diff --git a/pyproject.toml b/pyproject.toml index dc6d282..196de73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name="djlint" -version="1.15.0" +version="1.16.0" description="HTML Template Linter and Formatter" license="GPL-3.0-or-later" authors=["Christopher Pickering "] From 3e29af7a513a9b682aeddabfc7dad6c2b89f5fc0 Mon Sep 17 00:00:00 2001 From: "sur.la.route" <17788706+christopherpickering@users.noreply.github.com> Date: Tue, 20 Sep 2022 14:25:17 +0200 Subject: [PATCH 3/5] Update src/djlint/output.py Co-authored-by: Christian Clauss --- src/djlint/output.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/djlint/output.py b/src/djlint/output.py index aa54f9b..c0917d3 100644 --- a/src/djlint/output.py +++ b/src/djlint/output.py @@ -204,9 +204,7 @@ def build_stats_output(errors: List[Optional[Any]], config: Config) -> int: echo() width, _ = shutil.get_terminal_size() echo( - f"{Fore.GREEN}{Style.BRIGHT}Statistics{Style.RESET_ALL}\n{Style.DIM}" - + "".join(["─" for x in range(1, width)]) - + Style.RESET_ALL + f"{Fore.GREEN}{Style.BRIGHT}Statistics{Style.RESET_ALL}\n{Style.DIM}{'─' * width}{Style.RESET_ALL}" ) if messages and codes: From e278a60973088149644f5e60ade654221408b9a3 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 20 Sep 2022 13:05:04 +0000 Subject: [PATCH 4/5] chore(release): 1.17.0 [skip ci] # [1.17.0](https://github.com/Riverside-Healthcare/djLint/compare/v1.16.0...v1.17.0) (2022-09-20) ### Features * **stats:** moved linter stats to be appended to lint output ([90f023d](https://github.com/Riverside-Healthcare/djLint/commit/90f023d3258472e2feb65e8d7b235a0d58b40cb3)), closes [#396](https://github.com/Riverside-Healthcare/djLint/issues/396) --- package.json | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 359a2a8..4780a5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "djlint", - "version": "1.16.0", + "version": "1.17.0", "description": "HTML Template Linter and Formatter", "main": "./bin/index.js", "directories": { diff --git a/pyproject.toml b/pyproject.toml index 196de73..0ff7a83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name="djlint" -version="1.16.0" +version="1.17.0" description="HTML Template Linter and Formatter" license="GPL-3.0-or-later" authors=["Christopher Pickering "] From 34b7bd2d706c3f7691edac9b791679ec8d8d77cc Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 21 Sep 2022 07:35:08 +0200 Subject: [PATCH 5/5] tox.ini: Fix typo --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 624d5a8..3cb923d 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,7 @@ allowlist_externals = black [testenv:lint] deps = ; flake8 has a dep conflict - ; some can be installed manaully + ; some can be installed manually ; here. flake8 flake8-print