Skip to content

Commit

Permalink
Bumped version to 3.1.0 (#204)
Browse files Browse the repository at this point in the history
* Bumped version to 3.1.0

* fix build for now

* do we need it?

* added missing migration

* run isort :D
  • Loading branch information
FinalAngel authored Aug 19, 2022
1 parent faf439b commit 154968f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.7, 3.8, 3.9, ] # latest release minus two
python-version: [ 3.8, 3.9, ] # latest release minus two
requirements-file: [
dj22_cms37.txt,
dj22_cms38.txt,
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
Changelog
=========

Unreleased
==========

3.1.0 (2022-08-19)
==================

* Added support for Django 4.0
* Display page title instead of menu title
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.0.0'
__version__ = '3.1.0'
20 changes: 20 additions & 0 deletions djangocms_link/migrations/0016_alter_link_cmsplugin_ptr.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.0.7 on 2022-08-19 08:09

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('cms', '0022_auto_20180620_1551'),
('djangocms_link', '0015_auto_20190621_0407'),
]

operations = [
migrations.AlterField(
model_name='link',
name='cmsplugin_ptr',
field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='%(app_label)s_%(class)s', serialize=False, to='cms.cmsplugin'),
),
]
1 change: 0 additions & 1 deletion tests/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
django-select2>=5.11,<7 # 7 works in Django 2+
django-filer>=1.5.0
djangocms-text-ckeditor==4.0.0
html5lib>=1
django-app-helper
tox
Expand Down
1 change: 0 additions & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
'INSTALLED_APPS': [
'filer',
'django_select2',
'djangocms_text_ckeditor',
'tests.utils',
],
'CMS_LANGUAGES': {
Expand Down

0 comments on commit 154968f

Please sign in to comment.