Skip to content

Commit

Permalink
v1.35.3
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Oct 30, 2024
1 parent 5c93970 commit e918394
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
- uses: astral-sh/setup-uv@v3
- run: uv build --python 3.12 --no-cache
- uses: pypa/gh-action-pypi-publish@release/v1
with:
attestations: true
publish-npm:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'djlint' }}
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

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

## [1.35.3] - 2024-10-30

This release significantly improves performance, especially for large files and large projects.

Formatting <https://github.com/openedx/edx-platform> took 87 seconds in the previous version, now it takes only 4 seconds (>2000% speedup)! Tested on a 32-core computer.

- Performance improved by caching some functions. Thanks to @JCWasmx86!
- Removed the limitation on the number of workers introduced in v1.35.0.

## [1.35.2] - 2024-08-29

- Fix npm publishing
Expand Down
10 changes: 5 additions & 5 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.35.2",
"version": "1.35.3",
"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.35.2"
"postinstall": "python3 -m pip install --upgrade djlint==1.35.3"
},
"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 = ["hatchling"]

[project]
name = "djlint"
version = "1.35.2"
version = "1.35.3"
description = "HTML Template Linter and Formatter"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

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

0 comments on commit e918394

Please sign in to comment.