Skip to content

Commit

Permalink
Prepare release 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jul 22, 2024
1 parent 9d0a24b commit c90154e
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 16 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.8, 3.9, "3.10"] # latest release minus two
python-version: [ "3.10", "3.11", "3.12", "3.13"] # latest release minus two
requirements-file: [
dj32_cms310.txt,
dj32_cms311.txt,
dj40_cms311.txt,
dj42_cms311.txt,
dj42_cms41.txt,
dj50_cms311.txt,
dj50_cms41.txt,
]
os: [
ubuntu-20.04,
Expand Down
11 changes: 6 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
Changelog
=========

Unreleased
==========
4.0.0 (2024-07-22)
================

* Added support for python 3.9 and 3.10
* Dropped support for django < 3.2
* Dropped support for python < 3.8
* Added support for django CMS 4.1
* Added support for python 3.10 to 3.13
* Dropped support for django < 4.2
* Dropped support for python < 3.10
* fix: Remove deprecated test suite assertEquals
* fix: Remove outdated treebeard dependency

Expand Down
2 changes: 1 addition & 1 deletion djangocms_link/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.1.1'
__version__ = '4.0.0'
4 changes: 0 additions & 4 deletions tests/requirements/dj32_cms310.txt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r base.txt

Django>=3.2,<4.0
Django>=4.2,<5.0
django-cms>=3.11,<4.0
4 changes: 4 additions & 0 deletions tests/requirements/dj42_cms41.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-r base.txt

Django>=4.2,<5.0
django-cms>=4.1,<4.2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r base.txt

Django>=4.0,<4.1
Django>=5.0,<5.1
django-cms>=3.11,<4.0
4 changes: 4 additions & 0 deletions tests/requirements/dj50_cms41.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-r base.txt

Django>=5.0,<5.1
django-cms>=4.1,<4.2

0 comments on commit c90154e

Please sign in to comment.