From e060c583835772bcd1e91cfc70396340d052038c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 6 Jul 2022 18:04:08 +0000 Subject: [PATCH] chore(release): 1.5.0 [skip ci] # [1.5.0](https://github.com/Riverside-Healthcare/djLint/compare/v1.4.0...v1.5.0) (2022-07-06) ### Bug Fixes * **h026:** fixes rule H026 for cases where id/class are part of another string ([611b1fa](https://github.com/Riverside-Healthcare/djLint/commit/611b1fa57a130ac9cb7153c85df4f0eaabff8503)), closes [#281](https://github.com/Riverside-Healthcare/djLint/issues/281) ### Features * **npm:** updated npm installer ([4c0cacc](https://github.com/Riverside-Healthcare/djLint/commit/4c0caccdf691b9865167352367529625d59ca96c)), closes [#192](https://github.com/Riverside-Healthcare/djLint/issues/192) --- package.json | 36 ++++++++++++++++++------------------ pyproject.toml | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index f67e4bb..52a7871 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "djlint", - "version": "1.4.0", + "version": "1.5.0", "description": "HTML Template Linter and Formatter", "main": "./bin/index.js", "directories": { @@ -79,21 +79,21 @@ ] }, "xo": { - "space": true, - "prettier": true, - "rules": { - "unicorn/prefer-module": "off", - "no-var": "warn", - "camelcase": "warn", - "unicorn/filename-case":"warn", - "unicorn/no-process-exit":"off" - }, - "globals": [ - "document", - "window", - "data", - "debounce", - "history" - ] - } + "space": true, + "prettier": true, + "rules": { + "unicorn/prefer-module": "off", + "no-var": "warn", + "camelcase": "warn", + "unicorn/filename-case": "warn", + "unicorn/no-process-exit": "off" + }, + "globals": [ + "document", + "window", + "data", + "debounce", + "history" + ] + } } diff --git a/pyproject.toml b/pyproject.toml index ab53a0b..4582fc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name="djlint" -version="1.4.0" +version="1.5.0" description="HTML Template Linter and Formatter" license="GPL-3.0-or-later" authors=["Christopher Pickering "]