Skip to content

Commit

Permalink
Release 3.0.1 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Oct 12, 2022
1 parent d2d2e00 commit 209f88f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ Change Log
This document records all notable changes to [django-bleach](https://github.com/marksweb/django-bleach).
This project adheres to [Semantic Versioning](https://semver.org/).

[unreleased](https://github.com/marksweb/django-bleach/compare/3.0.0...master) changes
[unreleased](https://github.com/marksweb/django-bleach/compare/3.0.1...master) changes
-------------------------------------------------------------------------------------

Version 3.0.1
=============
**11-10-2022**

* Added support for django 4.1

Version 3.0.0
=============
**19-05-2022**
Expand Down
2 changes: 1 addition & 1 deletion django_bleach/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "3.0.0"
__version__ = "3.0.1"

VERSION = __version__.split(".")
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# built documents.
#
# The short X.Y version.
version = '3.0.0'
version = '3.0.1'
# The full version, including alpha/beta/rc tags.
# release = '1.0.0'

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.0
current_version = 3.0.1
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def find_variable(variable, *parts):
packages=find_packages(exclude=('testproject*',)),
install_requires=[
'bleach[css]>=5,<6',
'Django>=1.11',
'Django>=3.2',
],
python_requires='>=3.8',
tests_require=[
Expand Down

0 comments on commit 209f88f

Please sign in to comment.