Skip to content

Commit 407ac23

Browse files
πŸ”– bump version 5.2.0 -> 5.2.1 (#276)
1 parent 9432035 commit 407ac23

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,22 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
1818

1919
## [Unreleased]
2020

21+
## [5.2.1]
22+
2123
### Added
2224

23-
- Added support for Django 6.0.
25+
- Added support for Django 6.0
26+
- Added find references for extends/include tags
27+
- Added go to definition for extends/include tags
2428

2529
### Changed
2630

2731
- Bumped Rust toolchain from 1.88 to 1.90
32+
- **Internal**: Switched Python inspector from PyO3 to IPC-based approach
33+
- **Internal**: Refactored various internal components
34+
- **Internal**: Improved template parsing performance with token caching
35+
- **Internal**: Optimized parser performance
36+
- **Internal**: Added benchmarks for performance testing
2837

2938
## [5.2.0]
3039

@@ -117,9 +126,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
117126

118127
- Josh Thomas <[email protected]> (maintainer)
119128

120-
[unreleased]: https://github.com/joshuadavidthomas/django-language-server/compare/v5.2.0...HEAD
129+
[unreleased]: https://github.com/joshuadavidthomas/django-language-server/compare/v5.2.1...HEAD
121130
[5.1.0a0]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.1.0a0
122131
[5.1.0a1]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.1.0a1
123132
[5.1.0a2]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.1.0a2
124133
[5.2.0a0]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.2.0a0
125134
[5.2.0]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.2.0
135+
[5.2.1]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.2.1

β€ŽCargo.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žcrates/djls/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "djls"
3-
version = "5.2.0"
3+
version = "5.2.1"
44
edition = "2021"
55

66
[dependencies]

β€Žpyproject.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ docs = [
1717

1818
[project]
1919
name = "django-language-server"
20-
version = "5.2.0"
20+
version = "5.2.1"
2121
description = "A language server for the Django web framework"
2222
readme = "README.md"
2323
authors = [
@@ -79,7 +79,7 @@ Source = "https://github.com/joshuadavidthomas/django-language-server"
7979
[tool.bumpver]
8080
commit = true
8181
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
82-
current_version = "5.2.0"
82+
current_version = "5.2.1"
8383
push = true
8484
tag = false
8585
version_pattern = "MAJOR.MINOR.PATCH[-TAG[.NUM]]"

β€Žuv.lockβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)