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

Commit 63ada81

Browse files
committed
Bump version: 2.0.0 → 3.0.0
1 parent 71e4612 commit 63ada81

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ Change Log
44
This document records all notable changes to [django-bleach](https://github.com/marksweb/django-bleach).
55
This project adheres to [Semantic Versioning](https://semver.org/).
66

7-
[unreleased](https://github.com/marksweb/django-bleach/compare/2.0.0...master) changes
7+
[unreleased](https://github.com/marksweb/django-bleach/compare/3.0.0...master) changes
88
-------------------------------------------------------------------------------------
99

10+
Version 3.0.0
11+
=============
12+
**19-05-2022**
13+
1014
* Bleach dependency is now at ``>=5,<6`` [#55](https://github.com/marksweb/django-bleach/pull/55) (Thanks [Laityned](https://github.com/Laityned))
1115
* Deprecate bleach's `allowed_styles` kwarg
1216
* Added support for bleach's `css_sanitizer` kwarg

django_bleach/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "2.0.0"
1+
__version__ = "3.0.0"
22

33
VERSION = __version__.split(".")

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '2.0.0'
51+
version = '3.0.0'
5252
# The full version, including alpha/beta/rc tags.
5353
# release = '1.0.0'
5454

setup.cfg

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

@@ -12,24 +12,24 @@ search = version = '{current_version}'
1212
replace = version = '{new_version}'
1313

1414
[bumpversion:file:CHANGELOG.md]
15-
search =
15+
search =
1616
[unreleased](https://github.com/marksweb/django-bleach/compare/{current_version}...master) changes
1717
-------------------------------------------------------------------------------------
18-
replace =
18+
replace =
1919
[unreleased](https://github.com/marksweb/django-bleach/compare/{new_version}...master) changes
2020
-------------------------------------------------------------------------------------
21-
21+
2222
Version {new_version}
2323
=============
24-
**{utcnow:%%d-%%m-%%Y}**
24+
**{utcnow:%%d-%%m-%%Y}**
2525

2626
[bdist_wheel]
2727
universal = 1
2828

2929
[flake8]
3030
accept-encodings = utf-8,utf-16
3131
max-line-length = 119
32-
exclude =
32+
exclude =
3333
*.egg-info,
3434
.git,
3535
.settings,
@@ -42,7 +42,7 @@ exclude =
4242
*migrations*,
4343
tests,
4444
data
45-
ignore =
45+
ignore =
4646
E800,
4747
W503,
4848
C812,
@@ -68,5 +68,5 @@ sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
6868

6969
[codespell]
7070
skip = ./.git,./.env,./.venv,./.tox,./.eggs,./django_bleach/tests,./docs/_build,./testproject,./htmlcov
71-
count =
71+
count =
7272
quiet-level = 3

0 commit comments

Comments
 (0)