Skip to content

Commit 129d8a8

Browse files
authored
Release 0.11.0 (#103)
1 parent 29452e0 commit 129d8a8

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

docs/en/docs/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ hide:
55

66
# Release Notes
77

8-
## Unreleased
8+
## 0.11.0
99

1010
### Changed
1111

lilya/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.10.2"
1+
__version__ = "0.11.0"

lilya/compat.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,10 @@ async def close(self) -> None: ... # pragma: no cover
2323

2424

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

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

3331
except TypeError: # pragma: no cover
3432

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ long_description = "Yet another ASGI toolkit that delivers"
99
readme = "README.md"
1010
requires-python = ">=3.9"
1111
dynamic = ['version']
12-
license = "MIT"
12+
license = "BSD-3-Clause"
1313
authors = [{ name = "Tiago Silva", email = "tiago.arasilva@gmail.com" }]
1414
classifiers = [
1515
"Intended Audience :: Information Technology",

0 commit comments

Comments
 (0)