From c6b76a0e40f434f15a88029e1cfc469aa4e44da2 Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Tue, 16 Nov 2021 13:01:34 -0800 Subject: [PATCH] asyncpg v0.25.0 Changes ------- * Improve SSL option compatibility in URIs (by @fantix in 383c711e for #827) * Add `Pool` methods to determine its min, max, current and idle size (by @elprans in 603e3868 for #849) * Make it possible to specify a statement name in `Connection.prepare()` (by @elprans in 03a3d18f for #846) * Implement support for `multirange` types (by @elprans in d64a44a1 for #851) Fixes ----- * Make sure timeout callbacks always get cleaned up (by @elprans in dad26913 for #831) * Update `__all__` statements to a simpler form that is better supported by typecheckers (by @bschnurr in 0a3ae7f5 for #828) * Fix `test_timetz_encoding` on Python 3.10 (by @elprans in 3a90fef0) * Fix a bunch of `ResourceWarnings` in the test suite (by @elprans in 2f4fe539) * Fix `SSLContext` deprecation warnings (by @elprans in 4d39a052) * Fix the description of the database argument to `connect()` (by @elprans in a2a92374 for #847) * Fix parsing of IPv6 addresses in the connection URI (by @elprans in f900b737 for #845) * Improve diagnostics of invalid `executemany()` input (by @elprans in a8fc21e0 for #848) --- asyncpg/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asyncpg/_version.py b/asyncpg/_version.py index 2f106a98..bd1fc082 100644 --- a/asyncpg/_version.py +++ b/asyncpg/_version.py @@ -10,4 +10,4 @@ # supported platforms, publish the packages on PyPI, merge the PR # to the target branch, create a Git tag pointing to the commit. -__version__ = '0.24.0' +__version__ = '0.25.0'