From 221e3ea3380ece1507440d8b8ab68e4d1cd73bbd Mon Sep 17 00:00:00 2001 From: pohmelie Date: Sat, 30 Dec 2023 18:06:45 +0400 Subject: [PATCH] release 0.10.0 --- history.md | 3 ++- pyproject.toml | 2 +- readme.md | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/history.md b/history.md index 976bad4..e45c00f 100644 --- a/history.md +++ b/history.md @@ -1,10 +1,11 @@ # x.x.x (xx-xx-xxxx) -# 0.10.0 (xx-xx-xxxx) +# 0.10.0 (30-12-2023) - add `BlockingServiceMixin` with subset of functionality from `ServiceMixin` that can be used in non-async code - add `AsyncioServiceMixin` as an alias to `ServiceMixin` - `ServiceMixin` is now deprecated and will be removed in 1.0.0 - add mypy type hints +- minimum python version is now 3.11 # 0.9.1 (11-01-2022) - prevent multiple calls to `set_exception` diff --git a/pyproject.toml b/pyproject.toml index 7246044..f771efc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "facet" -version = "0.9.1" +version = "0.10.0" description = "service manager for asyncio" readme = "readme.md" requires-python = ">= 3.11" diff --git a/readme.md b/readme.md index 0e0c582..268368c 100644 --- a/readme.md +++ b/readme.md @@ -54,6 +54,8 @@ Service manager for asyncio (and classic blocking code since version 0.10.0). ## Requirements - python 3.11+ +Last version with python 3.6+ support is 0.9.1 + ## Usage ### Asyncio