From 61168e193356b15eebc6bb6a7688691d4155abf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alja=C5=BE=20Mur=20Er=C5=BEen?= Date: Fri, 23 Feb 2024 18:49:34 +0100 Subject: [PATCH] edgedb-python 1.9.0 Fixes ===== * Fix globals in nested modules (#474) (by @msullivan in ff08d9de for #474) * Support passing dicts and namedtuples for namedtuple arguments (#473) (by @msullivan in 60da99a5 for #374) * Expose the error details field. (#479) (by @vpetrovykh in 113ed0d7 for #472) --- .github/workflows/release.yml | 4 ++-- edgedb/_version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e019fb6..9b192b1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -130,9 +130,9 @@ jobs: - name: Install EdgeDB uses: edgedb/setup-edgedb@v1 - - uses: pypa/cibuildwheel@v2.12.3 + - uses: pypa/cibuildwheel@v2.16.5 with: - only: ${{ matrix.only }} + only: ${{ matrix.only }} env: CIBW_BUILD_VERBOSITY: 1 CIBW_BEFORE_ALL_LINUX: > diff --git a/edgedb/_version.py b/edgedb/_version.py index d2522869..57237824 100644 --- a/edgedb/_version.py +++ b/edgedb/_version.py @@ -28,4 +28,4 @@ # supported platforms, publish the packages on PyPI, merge the PR # to the target branch, create a Git tag pointing to the commit. -__version__ = '1.8.0' +__version__ = '1.9.0'