Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Release 3.0.1 #78

Merged
merged 3 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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