Skip to content

Commit

Permalink
Add bumpversion config and changelog file
Browse files Browse the repository at this point in the history
  • Loading branch information
Václav Dohnal committed Dec 10, 2024
1 parent 5faeb8c commit 7451b7c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .bumpversion.toml
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}\""
27 changes: 27 additions & 0 deletions CHANGELOG.md
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)

0 comments on commit 7451b7c

Please sign in to comment.