diff --git a/CHANGELOG.md b/CHANGELOG.md index 599e96d9..631f0da6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ [Semantic Versioning](https://semver.org/) +## [1.36.2] - 2024-11-28 + +Fix: + +- Fix specific mixture of quotes and escaped quotes (e.g. in a json string in an html attribute) breaks the html. Thanks, @oliverhaas. +- Resolve exclude paths. Thanks, @antoineauger. + +Performance: + +- Minor regex indent optimization. Thanks, @oliverhaas. + ## [1.36.1] - 2024-11-07 - Improve performance by ~30%. Thanks, @oliverhaas. diff --git a/package-lock.json b/package-lock.json index 36eb64b0..ce6ea85e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "djlint", - "version": "1.36.1", + "version": "1.36.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "djlint", - "version": "1.36.1", + "version": "1.36.2", "hasInstallScript": true, "license": "GPL-3.0-or-later", "devDependencies": { diff --git a/package.json b/package.json index 114611cf..8598a556 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "djlint", - "version": "1.36.1", + "version": "1.36.2", "description": "HTML Template Linter and Formatter", "keywords": [ "html template linter", @@ -35,7 +35,7 @@ }, "files": [], "scripts": { - "postinstall": "python3 -m pip install --upgrade djlint==1.36.1" + "postinstall": "python3 -m pip install --upgrade djlint==1.36.2" }, "devDependencies": { "@ianvs/prettier-plugin-sort-imports": "4.4.0", diff --git a/pyproject.toml b/pyproject.toml index 325e2747..d0f44e3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["hatchling"] [project] name = "djlint" -version = "1.36.1" +version = "1.36.2" description = "HTML Template Linter and Formatter" readme = "README.md" license = { text = "GPL-3.0-or-later" } diff --git a/uv.lock b/uv.lock index 929034c5..08b0dc06 100644 --- a/uv.lock +++ b/uv.lock @@ -109,7 +109,7 @@ sdist = { url = "https://files.pythonhosted.org/packages/e5/66/9bfd2d69fb4479d38 [[package]] name = "djlint" -version = "1.36.1" +version = "1.36.2" source = { editable = "." } dependencies = [ { name = "click" },