Skip to content

Commit 9a12d14

Browse files
committed
asyncpg v0.28.0
Minor fixes and improvements. Changes ======= * Do not try to cleanup statements (#981) (by @fvannee in d2e710f for #981) * Add Pool.is_closing() method (#973) (by @singingwolfboy in 9cb2c1c for #973) * Fix test_tls_version for LibreSSL (#974) (by @CyberTailor in 7df9812 for #974) * Handle environments without home dir (#1011) (by @LeonardBesson in 172b8f6 for #1011) * fix: salt and iterations parsing for scram (#1026) (by @trigonometr in 7443a9e for #1026) * Add support for target_session_attrs (#987) (by @JesseDeLoore in bf74e88 for #987) * Add support for READ UNCOMMITTED (#1039) (by @benwah in 2f20bae for #1039) * Update benchmarks, add psycopg3 (#1042) (by @elprans in 7d4fcf0 for #1042)
1 parent a1a7b1a commit 9a12d14

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/release.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- uses: actions/setup-python@v4
8181
with:
8282
python-version: "3.x"
83-
- run: pip install cibuildwheel==2.10.2
83+
- run: pip install cibuildwheel==2.13.1
8484
- id: set-matrix
8585
run: |
8686
MATRIX_INCLUDE=$(
@@ -118,13 +118,11 @@ jobs:
118118
if: runner.os == 'Linux'
119119
uses: docker/setup-qemu-action@v2
120120

121-
- uses: pypa/cibuildwheel@v2.10.2
121+
- uses: pypa/cibuildwheel@v2.13.1
122122
with:
123123
only: ${{ matrix.only }}
124124
env:
125125
CIBW_BUILD_VERBOSITY: 1
126-
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
127-
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
128126

129127
- uses: actions/upload-artifact@v3
130128
with:

asyncpg/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# supported platforms, publish the packages on PyPI, merge the PR
1111
# to the target branch, create a Git tag pointing to the commit.
1212

13-
__version__ = '0.28.0.dev0'
13+
__version__ = '0.28.0'

0 commit comments

Comments
 (0)