Skip to content

Commit 34d5501

Browse files
authored
Release 4.0.0 (#97)
1 parent 29b546b commit 34d5501

File tree

7 files changed

+21
-11
lines changed

7 files changed

+21
-11
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.7', '3.8', '3.9', '3.10']
12+
python-version: ['3.8', '3.9', '3.10', '3.11']
1313
django-version: ['3.2', '4.0', '4.1']
1414
os: [
1515
ubuntu-20.04,
1616
]
1717
exclude:
18-
- python-version: '3.7'
18+
- python-version: '3.11'
19+
django-version: '3.2'
20+
- python-version: '3.11'
1921
django-version: '4.0'
20-
- python-version: '3.7'
21-
django-version: '4.1'
2222

2323
steps:
2424
- uses: actions/checkout@v3
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
fail-fast: false
4848
matrix:
49-
python-version: ['3.8', '3.9', '3.10']
49+
python-version: ['3.8', '3.9', '3.10', '3.11']
5050
django-version: [
5151
'https://github.com/django/django/archive/main.tar.gz'
5252
]

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ Changelog
55
unreleased
66
==========
77

8+
4.0.0 2022-12-01
9+
================
10+
11+
12+
4.0.0 2022-12-01
13+
================
14+
15+
* Dropped support for Python 3.7
16+
* Added support for Python 3.11
817
* Dropped support for Django < 3.2
918
* Added support for Django 4.1
1019
* Start testing against Django's `main` branch

classytags/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.0.1'
1+
__version__ = '4.0.0'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = '3.0.1'
53+
version = '4.0.0'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '3.0.1'
55+
release = '4.0.0'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.1
2+
current_version = 4.0.0
33
commit = True
44
tag = False
55

@@ -39,6 +39,7 @@ exclude =
3939
build,
4040
data,
4141
dist,
42+
docs/env,
4243
docs/conf.py,
4344
*migrations*,
4445
requirements,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
setup(
3737
name='django-classy-tags',
38-
version='3.0.1',
38+
version='4.0.0',
3939
author='Jonas Obrist',
4040
author_email='ojiidotch@gmail.com',
4141
maintainer='Django CMS Association and contributors',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
envlist =
33
flake8
44
isort
5-
py{37}-dj32
65
py{38,39,310}-dj{32,40,41,main}
6+
py{310,311}-dj{41,main}
77

88
skip_missing_interpreters=True
99

0 commit comments

Comments
 (0)