From 9825bbb61140e60489b8d5649a288d1f67c0ef9f Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Thu, 7 Jul 2022 12:02:35 -0700 Subject: [PATCH] asyncpg v0.26.0 Changes ------- * Add support to use awaitable object in password function. (#889) (by @kwarunek in fb3b6bf7 for #889) * Support direct TLS connections (i.e. no STARTTLS) (#923) (by @jackwotherspoon in f2a937d2 for #923) Fixes ----- * Fix invalid `pyproject.toml` (#900) (by @Rongronggg9 in eddb649c for #900) * Add record_class parameter Pool.fetch and Pool.fetchrow (#896) (by @baltitenger in 2519cf38 for #896) * Domain basetypes are introspected (#886) (#887) (by @QuantumTM in cca4a2d3 for #886) * Properly handle exceptions raised while handling server auth messages (#862) (by @elprans in bd192623 for #862) --- .github/workflows/release.yml | 2 +- asyncpg/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d1e2cfd5..e984a351 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -95,7 +95,7 @@ jobs: fetch-depth: 50 submodules: true - - uses: pypa/cibuildwheel@v2.2.2 + - uses: pypa/cibuildwheel@v2.8.0 env: CIBW_BUILD_VERBOSITY: 1 CIBW_BUILD: ${{ matrix.cibw_python }} diff --git a/asyncpg/_version.py b/asyncpg/_version.py index ce45e9c8..7e897c90 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.26.0.dev0' +__version__ = '0.26.0'