Skip to content

Commit

Permalink
Bump to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Jul 29, 2024
1 parent b70697c commit f0f3b15
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release 2.0.0 (2024-07-28)
==========================

* Adopt Ruff
* Tighten MyPy settings
* Update GitHub actions versions

Release 1.1.10 (2024-01-13)
===========================

Expand Down
4 changes: 2 additions & 2 deletions sphinxcontrib/serializinghtml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def dumps(self, obj: Any, *args: Any, **kwargs: Any) -> str | bytes: ...
def load(self, file: Any, *args: Any, **kwargs: Any) -> Any: ...
def loads(self, data: Any, *args: Any, **kwargs: Any) -> Any: ...

__version__ = '1.1.10'
__version_info__ = (1, 1, 10)
__version__ = '2.0.0'
__version_info__ = (2, 0, 0)

package_dir = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit f0f3b15

Please sign in to comment.