Skip to content

Commit 654bbdb

Browse files
committed
Released 1.5.0.
1 parent 092a2e1 commit 654bbdb

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.6
21+
python-version: 3.7
2222

2323
- name: Install dependencies
2424
run: |
@@ -31,7 +31,7 @@ jobs:
3131
twine check dist/*
3232
- name: Upload packages to Pypi
3333
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
34-
uses: pypa/gh-action-pypi-publish@master
34+
uses: pypa/gh-action-pypi-publish@release/v1
3535
with:
3636
user: __token__
3737
password: ${{ secrets.PYPI_API_TOKEN }}

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.5.0
2+
=====
3+
:release-date: 2023-02-20
4+
5+
- Added tested support for Python 3.10, 3.11 and Django 4.0, 4.1, and 4.2.
6+
- Dropped support for Python < 3.7 and Django < 3.2.
7+
18
1.4.4
29
=====
310
:release-date: 2021-07-30

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='django-seal',
9-
version='1.4.5a0',
9+
version='1.5.0',
1010
description=(
1111
'Allows ORM constructs to be sealed to prevent them from executing '
1212
'queries on attribute accesses.'
@@ -28,7 +28,6 @@
2828
'Framework :: Django :: 3.2',
2929
'Framework :: Django :: 4.0',
3030
'Framework :: Django :: 4.1',
31-
'Framework :: Django :: 4.2',
3231
'Intended Audience :: Developers',
3332
'License :: OSI Approved :: MIT License',
3433
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)