This commit is contained in:
Will Kahn-Greene 2023-10-06 15:01:26 -04:00 коммит произвёл Will Kahn-Greene
Родитель c4a4eba4a3
Коммит 90441daa5a
2 изменённых файлов: 13 добавлений и 5 удалений

14
CHANGES
Просмотреть файл

@ -1,10 +1,10 @@
Bleach changes
==============
Version 6.1.0 (in development)
------------------------------
Version 6.1.0 (October 6th, 2023)
---------------------------------
**Backwards incompatibel changes**
**Backwards incompatible changes**
* Dropped support for Python 3.7. (#709)
@ -14,6 +14,14 @@ None
**Bug fixes**
* Add support for Python 3.12. (#710)
* Fix linkify with arrays in querystring (#436)
* Handle more cases with < folloed by character data (#705)
* Fix entities inside a tags in linkification (#704)
* Update cap for tinycss2 to <1.3 (#702)
* Updated Sphinx requirement
* Add dependabot for github actions and update github actions
Version 6.0.0 (January 23rd, 2023)
----------------------------------

Просмотреть файл

@ -11,9 +11,9 @@ from bleach.sanitizer import (
# yyyymmdd
__releasedate__ = ""
__releasedate__ = "20231006"
# x.y.z or x.y.z.dev0 -- semver
__version__ = "6.1.0.dev0"
__version__ = "6.1.0"
__all__ = ["clean", "linkify"]