Skip to content

Commit

Permalink
Release 0.11.0 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil authored Nov 25, 2024
1 parent 29452e0 commit 129d8a8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/en/docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ hide:

# Release Notes

## Unreleased
## 0.11.0

### Changed

Expand Down
2 changes: 1 addition & 1 deletion lilya/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.2"
__version__ = "0.11.0"
6 changes: 2 additions & 4 deletions lilya/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ async def close(self) -> None: ... # pragma: no cover


try:
hashlib.md5(b"data", usedforsecurity=False) # type: ignore[call-arg]
hashlib.md5(b"data", usedforsecurity=False)

def md5_hexdigest(data: bytes, *, usedforsecurity: bool = True) -> str: # pragma: no cover
return hashlib.md5( # type: ignore[call-arg]
data, usedforsecurity=usedforsecurity
).hexdigest()
return hashlib.md5(data, usedforsecurity=usedforsecurity).hexdigest()

except TypeError: # pragma: no cover

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ long_description = "Yet another ASGI toolkit that delivers"
readme = "README.md"
requires-python = ">=3.9"
dynamic = ['version']
license = "MIT"
license = "BSD-3-Clause"
authors = [{ name = "Tiago Silva", email = "[email protected]" }]
classifiers = [
"Intended Audience :: Information Technology",
Expand Down

0 comments on commit 129d8a8

Please sign in to comment.