Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/testing-42.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- '3.11.14'
- '3.10.19'
django-version:
- '4.2.28'
- '4.2.30'
database-target:
- 'mysql'
- 'postgres'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing-52.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- '3.11.14'
- '3.10.19'
django-version:
- '5.2.11'
- '5.2.13'
database-target:
- 'mysql'
- 'postgres'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing-60.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- '3.13.11'
- '3.12.12'
django-version:
- '6.0.2'
- '6.0.4'
database-target:
- 'mysql'
- 'postgres'
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# django-letsencrypt CHANGELOG

## v6.0.2

There are no major project changes or code updates.
This release aligns with recent Django releases and Python releases.

- General Updates:
- Updated Django target versions against newer releases.

## v6.0.1

There are no major project changes or code updates.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ supported so far:
- `3.11` (with Django `5.2`, `4.2`)
- `3.10` (with Django `5.2`, `4.2`)
- Django Versions Supported:
- `6.0` minimum version `6.0.2`
- `5.2 LTS` minimum version `5.2.11`
- `4.2 LTS` minimum version `4.2.28`
- `6.0` minimum version `6.0.4`
- `5.2 LTS` minimum version `5.2.13`
- `4.2 LTS` minimum version `4.2.30`
- Databases Supported:
- `mysql`
- `postgres`
Expand Down
2 changes: 1 addition & 1 deletion letsencrypt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
"""

__version__ = '6.0.1'
__version__ = '6.0.2'

default_app_config = 'letsencrypt.apps.LetsEncryptConfig'
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name='django-letsencrypt'
version='6.0.1'
version='6.0.2'
description="A simple Django app to handle Let's Encrypt ACME challenges."
readme = 'README.md'
license = 'Apache-2.0'
Expand Down Expand Up @@ -44,7 +44,7 @@ classifiers = [
'Topic :: Security',
]
dependencies = [
'Django>=4.2.28',
'Django>=4.2.30',
]

[project.urls]
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ commands =
make version-check-django
make test-tox-entry
deps =
django42: Django>=4.2.28,<5.0
django52: Django>=5.2.11,<6.0
django60: Django>=6.0.2,<7.0
django42: Django>=4.2.30,<5.0
django52: Django>=5.2.13,<6.0
django60: Django>=6.0.4,<7.0
coverage
allowlist_externals =
make
Expand Down
823 changes: 440 additions & 383 deletions uv.lock

Large diffs are not rendered by default.

Loading