🔖 bump version 5.2.0-alpha -> 5.2.0 (#211)
Some checks are pending
lint / cargo-check (push) Waiting to run
lint / pre-commit (push) Waiting to run
lint / rustfmt (push) Waiting to run
lint / clippy (push) Waiting to run
release / build (push) Waiting to run
release / test (push) Waiting to run
release / release (push) Blocked by required conditions
test / generate-matrix (push) Waiting to run
test / Python , Django () (push) Blocked by required conditions
test / tests (push) Blocked by required conditions
zizmor 🌈 / zizmor latest via PyPI (push) Waiting to run

This commit is contained in:
Josh Thomas 2025-09-09 13:20:50 -05:00 committed by Josh
parent f6286f7f46
commit 31b0308a40
4 changed files with 9 additions and 7 deletions

View file

@ -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 <josh@joshthomas.dev> (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

2
Cargo.lock generated
View file

@ -422,7 +422,7 @@ dependencies = [
[[package]]
name = "djls"
version = "5.2.0-alpha"
version = "5.2.0"
dependencies = [
"anyhow",
"clap",

View file

@ -1,6 +1,6 @@
[package]
name = "djls"
version = "5.2.0-alpha"
version = "5.2.0"
edition = "2021"
[lib]

View file

@ -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]]"