-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bumpversion config and changelog file
- Loading branch information
Václav Dohnal
committed
Dec 10, 2024
1 parent
5faeb8c
commit 7451b7c
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[tool.bumpversion] | ||
current_version = "0.3.0" | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "pyproject.toml" | ||
search = "version = \"{current_version}\"" | ||
replace = "version = \"{new_version}\"" | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "django_asgi_lifespan/__init__.py" | ||
search = "__version__ = \"{current_version}\"" | ||
replace = "__version__ = \"{new_version}\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Changelog | ||
|
||
<!-- START --> | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.3.0] - 2024-12-11 | ||
|
||
[:material-github: Github release](https://github.com/illagrenan/django-brotli/releases/tag/v0.3.0) | ||
|
||
### Added | ||
|
||
- Add support for Python 3.10, 3.11, 3.12 and 3.13. | ||
- Add support for Django 4.2 LTS, 5.0 and 5.1. | ||
|
||
### Changed | ||
|
||
- Use Github Actions for CI. | ||
- Use Ruff formatter and Ruff linter. | ||
- Use pytest for tests. | ||
|
||
|
||
### Removed | ||
|
||
- Drop support for unsupported versions of Python (3.6, 3.7, 3.8) and Django (3) |