Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Release 3.2.7 #504

Merged
merged 12 commits into from
Jan 6, 2024
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
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,17 @@ jobs:
requirements-file: [
django-2.2.txt,
django-3.2.txt,
django-4.1.txt
django-4.2.txt,
django-5.0.txt,
]
os: [
ubuntu-20.04,
]
exclude:
- requirements-file: django-5.0.txt
python-version: 3.8
- requirements-file: django-5.0.txt
python-version: 3.9

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Changelog
=========

unreleased
==========
3.2.7 (2024-01-04)
==================

* Style delete links
* Fix read-only fields overlapping with their labels
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ To **compile CSS** run the following commands using **node 16**:

* ``nvm use``
* ``npm install``
* ``gulp``
* ``gulp icons sass bundle`` (or if gulp is not found by the shell ``npx gulp icons sass bundle``)


For further options have a look at the ``gulpfile.js``.

Expand Down
2 changes: 1 addition & 1 deletion djangocms_admin_style/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
10. Publish the release when ready
11. Github actions will publish the new package to pypi
"""
__version__ = '3.2.6'
__version__ = '3.2.7'
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django CMS',
'Framework :: Django CMS :: 3.6',
'Framework :: Django CMS :: 3.7',
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements/django-3.2.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-r base.txt
Django>=3.2,<4
django-cms>=3.8
django-cms>=3.8,<4
3 changes: 0 additions & 3 deletions tests/requirements/django-4.1.txt

This file was deleted.

3 changes: 3 additions & 0 deletions tests/requirements/django-4.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-r base.txt
Django>=4.2,<5
django-cms>=3.11.1,<4
3 changes: 3 additions & 0 deletions tests/requirements/django-5.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-r base.txt
Django>=5,<5.1
django-cms>=4
1 change: 1 addition & 0 deletions tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
'LANGUAGE_CODE': 'en',
'ALLOWED_HOSTS': ['*'],
'CMS_CONFIRM_VERSION4': True,
}


Expand Down
Loading