Skip to content

Commit

Permalink
Release 4.0.0 (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Dec 1, 2022
1 parent 29b546b commit 34d5501
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']
django-version: ['3.2', '4.0', '4.1']
os: [
ubuntu-20.04,
]
exclude:
- python-version: '3.7'
- python-version: '3.11'
django-version: '3.2'
- python-version: '3.11'
django-version: '4.0'
- python-version: '3.7'
django-version: '4.1'

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']
django-version: [
'https://github.com/django/django/archive/main.tar.gz'
]
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ Changelog
unreleased
==========

4.0.0 2022-12-01
================


4.0.0 2022-12-01
================

* Dropped support for Python 3.7
* Added support for Python 3.11
* Dropped support for Django < 3.2
* Added support for Django 4.1
* Start testing against Django's `main` branch
Expand Down
2 changes: 1 addition & 1 deletion classytags/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.0.1'
__version__ = '4.0.0'
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '3.0.1'
version = '4.0.0'
# The full version, including alpha/beta/rc tags.
release = '3.0.1'
release = '4.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.1
current_version = 4.0.0
commit = True
tag = False

Expand Down Expand Up @@ -39,6 +39,7 @@ exclude =
build,
data,
dist,
docs/env,
docs/conf.py,
*migrations*,
requirements,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

setup(
name='django-classy-tags',
version='3.0.1',
version='4.0.0',
author='Jonas Obrist',
author_email='ojiidotch@gmail.com',
maintainer='Django CMS Association and contributors',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
envlist =
flake8
isort
py{37}-dj32
py{38,39,310}-dj{32,40,41,main}
py{310,311}-dj{41,main}

skip_missing_interpreters=True

Expand Down

0 comments on commit 34d5501

Please sign in to comment.