diff --git a/CHANGELOG.md b/CHANGELOG.md index 631f0da6..d318eec1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ [Semantic Versioning](https://semver.org/) +## [1.36.3] - 2024-11-29 + +This release reverts the following changes from the last release as they caused issues: + +- Fix specific mixture of quotes and escaped quotes (e.g. in a json string in an html attribute) breaks the html. Issue #1048. +- Resolve exclude paths. Issue #1047. + ## [1.36.2] - 2024-11-28 Fix: diff --git a/package-lock.json b/package-lock.json index ce6ea85e..223e4bca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "djlint", - "version": "1.36.2", + "version": "1.36.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "djlint", - "version": "1.36.2", + "version": "1.36.3", "hasInstallScript": true, "license": "GPL-3.0-or-later", "devDependencies": { diff --git a/package.json b/package.json index 8598a556..0b2ad749 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "djlint", - "version": "1.36.2", + "version": "1.36.3", "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.2" + "postinstall": "python3 -m pip install --upgrade djlint==1.36.3" }, "devDependencies": { "@ianvs/prettier-plugin-sort-imports": "4.4.0", diff --git a/pyproject.toml b/pyproject.toml index d0f44e3c..d206c053 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["hatchling"] [project] name = "djlint" -version = "1.36.2" +version = "1.36.3" 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 08b0dc06..91b90392 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.2" +version = "1.36.3" source = { editable = "." } dependencies = [ { name = "click" },