From 31b0308a409ea8349308e57974705c3af2848a55 Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Tue, 9 Sep 2025 13:20:50 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20bump=20version=205.2.0-alpha=20-?= =?UTF-8?q?>=205.2.0=20(#211)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++-- Cargo.lock | 2 +- crates/djls/Cargo.toml | 2 +- pyproject.toml | 6 +++--- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73706fd..2279467 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ ## [Unreleased] +## [5.2.0] + ### Added - Added context-aware completions with snippets @@ -107,9 +109,9 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ - Josh Thomas (maintainer) -[unreleased]: https://github.com/joshuadavidthomas/django-language-server/compare/v5.2.0a0...HEAD +[unreleased]: https://github.com/joshuadavidthomas/django-language-server/compare/v5.2.0...HEAD [5.1.0a0]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.1.0a0 [5.1.0a1]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.1.0a1 [5.1.0a2]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.1.0a2 - [5.2.0a0]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.2.0a0 +[5.2.0]: https://github.com/joshuadavidthomas/django-language-server/releases/tag/v5.2.0 diff --git a/Cargo.lock b/Cargo.lock index 2cc7ff2..f1d8b44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,7 +422,7 @@ dependencies = [ [[package]] name = "djls" -version = "5.2.0-alpha" +version = "5.2.0" dependencies = [ "anyhow", "clap", diff --git a/crates/djls/Cargo.toml b/crates/djls/Cargo.toml index 72ba8b9..4ca96ea 100644 --- a/crates/djls/Cargo.toml +++ b/crates/djls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "djls" -version = "5.2.0-alpha" +version = "5.2.0" edition = "2021" [lib] diff --git a/pyproject.toml b/pyproject.toml index 9f1dad7..291beb4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ docs = [ [project] name = "django-language-server" -version = "5.2.0a0" +version = "5.2.0" description = "A language server for the Django web framework" readme = "README.md" authors = [ @@ -25,7 +25,7 @@ authors = [ ] requires-python = ">=3.9" classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Framework :: Django", # [[[cog # import subprocess @@ -80,7 +80,7 @@ Source = "https://github.com/joshuadavidthomas/django-language-server" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "5.2.0-alpha" +current_version = "5.2.0" push = true tag = false version_pattern = "MAJOR.MINOR.PATCH[-TAG[.NUM]]"