Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for v6.1.0 release #723

Merged
merged 2 commits into from
Oct 6, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 11 additions & 3 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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 < followed 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)
----------------------------------
Expand Down
4 changes: 2 additions & 2 deletions bleach/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@


# 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"]
Expand Down