Skip to content

Commit

Permalink
Update for v6.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Oct 6, 2023
1 parent c4a4eba commit b268eac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
14 changes: 11 additions & 3 deletions 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)

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 < 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)
----------------------------------
Expand Down
4 changes: 2 additions & 2 deletions bleach/__init__.py
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

0 comments on commit b268eac

Please sign in to comment.