From 129d8a8ba9685b432bd4928578622ee1e9e6d4fb Mon Sep 17 00:00:00 2001 From: Tiago Silva Date: Mon, 25 Nov 2024 13:19:46 +0000 Subject: [PATCH] Release 0.11.0 (#103) --- docs/en/docs/release-notes.md | 2 +- lilya/__init__.py | 2 +- lilya/compat.py | 6 ++---- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 2760364..bdc8437 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -5,7 +5,7 @@ hide: # Release Notes -## Unreleased +## 0.11.0 ### Changed diff --git a/lilya/__init__.py b/lilya/__init__.py index 17c1a62..ae6db5f 100644 --- a/lilya/__init__.py +++ b/lilya/__init__.py @@ -1 +1 @@ -__version__ = "0.10.2" +__version__ = "0.11.0" diff --git a/lilya/compat.py b/lilya/compat.py index b95de78..faff9df 100644 --- a/lilya/compat.py +++ b/lilya/compat.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 270ec2c..f0d8cce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "tiago.arasilva@gmail.com" }] classifiers = [ "Intended Audience :: Information Technology",