From 9a12d149a8ff5f1a0d252a70a7015dc2876c0148 Mon Sep 17 00:00:00 2001 From: Elvis Pranskevichus Date: Thu, 6 Jul 2023 16:21:56 -0700 Subject: [PATCH] asyncpg v0.28.0 Minor fixes and improvements. Changes ======= * Do not try to cleanup statements (#981) (by @fvannee in d2e710fe for #981) * Add Pool.is_closing() method (#973) (by @singingwolfboy in 9cb2c1ce for #973) * Fix test_tls_version for LibreSSL (#974) (by @CyberTailor in 7df9812a for #974) * Handle environments without home dir (#1011) (by @LeonardBesson in 172b8f69 for #1011) * fix: salt and iterations parsing for scram (#1026) (by @trigonometr in 7443a9e7 for #1026) * Add support for target_session_attrs (#987) (by @JesseDeLoore in bf74e88b for #987) * Add support for READ UNCOMMITTED (#1039) (by @benwah in 2f20bae7 for #1039) * Update benchmarks, add psycopg3 (#1042) (by @elprans in 7d4fcf04 for #1042) --- .github/workflows/release.yml | 6 ++---- asyncpg/_version.py | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 406c3a3c..a294f9c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,7 +80,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.x" - - run: pip install cibuildwheel==2.10.2 + - run: pip install cibuildwheel==2.13.1 - id: set-matrix run: | MATRIX_INCLUDE=$( @@ -118,13 +118,11 @@ jobs: if: runner.os == 'Linux' uses: docker/setup-qemu-action@v2 - - uses: pypa/cibuildwheel@v2.10.2 + - uses: pypa/cibuildwheel@v2.13.1 with: only: ${{ matrix.only }} env: CIBW_BUILD_VERBOSITY: 1 - CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 - CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28 - uses: actions/upload-artifact@v3 with: diff --git a/asyncpg/_version.py b/asyncpg/_version.py index 693e3bed..32a68a56 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.28.0.dev0' +__version__ = '0.28.0'