From: Daniele Varrazzo Date: Sat, 6 Jan 2024 19:36:56 +0000 (+0100) Subject: docs: add note about checking enums and docs on PostgreSQL update X-Git-Tag: 3.1.17~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08d08323d2563c421da1086718993f273e18a865;p=thirdparty%2Fpsycopg.git docs: add note about checking enums and docs on PostgreSQL update --- diff --git a/docs/release.rst b/docs/release.rst index dcbb789da..a08b4337f 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -69,9 +69,21 @@ When a new PostgreSQL major version is released - Run the script ``tools/update_oids.py`` to add new oids. Use ``-h`` to get an example docker command line to run a server locally. +- Check if there are new enum values to include in: + + - ``psycopg_c/psycopg_c/pq/libpq.pxd``; + - ``psycopg/psycopg/pq/_enums.py``. + +- Include the new version in GitHub Actions test and package grids. + - Bump ``PG_VERSION`` in the ``macos`` job of ``.github/workflows/packages-bin.yml``. - Bump ``pg_version`` in ``tools/build/build_macos_arm64.sh``. - Bump the version in ``tools/build/wheel_win32_before_build.bat``. + +- Update the documented versions in: + + - ``docs/basic/install.rst``; + - ``content/features/contents.lr`` in the psycopg-website repository.