Skip to content

Commit

Permalink
feat: Release 3.2.7 (#504)
Browse files Browse the repository at this point in the history
* Update __init__.py

* Update CHANGELOG.rst

* Update setup.py

* Update django-3.2.txt

* Update and rename django-4.1.txt to django-4.2.txt

* Update test.yml

* Create django-5.0.txt

* Update django-5.0.txt

* Update settings.py

* Update test.yml

* Update test.yml

* Update build instructions in README.rst
  • Loading branch information
fsbraun authored Jan 6, 2024
1 parent 7ee48a8 commit 7d412b9
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 9 deletions.
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

0 comments on commit 7d412b9

Please sign in to comment.