Skip to content

Commit

Permalink
django-canonical-domain 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Jul 20, 2021
1 parent dee7ade commit 31f9d0b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Change log
`Next version`_
~~~~~~~~~~~~~~~


`0.4`_ (2021-07-20)
~~~~~~~~~~~~~~~~~~~

- Dropped official support for Django < 2.2 and Python < 3.6.
- Switched to a declarative setup.
- Switched to GitHub actions.
Expand Down Expand Up @@ -41,4 +45,5 @@ Change log
.. _0.1: https://github.com/matthiask/django-canonical-domain/commit/55721303fc
.. _0.2: https://github.com/matthiask/django-canonical-domain/compare/0.1...0.2
.. _0.3: https://github.com/matthiask/django-canonical-domain/compare/0.2...0.3
.. _Next version: https://github.com/matthiask/django-canonical-domain/compare/0.3...master
.. _0.4: https://github.com/matthiask/django-canonical-domain/compare/0.3...0.4
.. _Next version: https://github.com/matthiask/django-canonical-domain/compare/0.4...master
5 changes: 0 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,5 @@ This module allows redirecting all requests for a given Django instance
to a single canonical domain and optionally enforcing HTTPS for all
requests as well.

It achieves this by providing a replacement for Django's
``django.middleware.security.SecurityMiddleware`` which overrides its
request processing with a variant that also redirects requests to the
canonical domain which already are secure.

- `Documentation <https://django-canonical-domain.readthedocs.io>`_
- `Github <https://github.com/matthiask/django-canonical-domain/>`_
2 changes: 1 addition & 1 deletion canonical_domain/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (0, 3, 0)
VERSION = (0, 4, 0)
__version__ = ".".join(map(str, VERSION))
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ deps =
dj22: Django>=2.2,<3.0
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
dj32: Django>=3.2a1,<4.0
dj32: Django>=3.2,<4.0
djmain: https://github.com/django/django/archive/main.tar.gz

[testenv:style]
Expand Down

0 comments on commit 31f9d0b

Please sign in to comment.