Skip to content

Commit

Permalink
v1.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Aug 29, 2024
1 parent 7ba9d6b commit edd1525
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

[Semantic Versioning](https://semver.org/)

## [1.35.0] - 2024-08-29

- Unpin dependencies upper bounds.
- Use min(cpu_count, files_count, 4) workers. Use a thread instead of a process if only one worker will be used. This gives the best performance and low resource usage.
- Refactor the code.
- Fix max attribute length with longer regex custom html tags (#884)
- Fix Jinja formatting issues (#715)
- Fix: not detecting tabs as a valid seperation between tags (#813)
- Fix: Add ignore for sms links (#815)
- Fix: Allow attributes on <title> (#830)
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "djlint",
"version": "1.34.2",
"version": "1.35.0",
"description": "HTML Template Linter and Formatter",
"keywords": [
"html template linter",
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"files": [],
"scripts": {
"postinstall": "python3 -m pip install --upgrade djlint==1.34.1"
"postinstall": "python3 -m pip install --upgrade djlint==1.35.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["poetry-core"]

[tool.poetry]
name = "djlint"
version = "1.34.2"
version = "1.35.0"
description = "HTML Template Linter and Formatter"
license = "GPL-3.0-or-later"
authors = ["Christopher Pickering"]
Expand Down

0 comments on commit edd1525

Please sign in to comment.