]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
docs: add note about checking enums and docs on PostgreSQL update
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 6 Jan 2024 19:36:56 +0000 (20:36 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sat, 6 Jan 2024 19:36:56 +0000 (20:36 +0100)
docs/release.rst

index dcbb789da0dd12a17989576159e28046947bc15b..a08b4337f89646baa1b178f29eb50650e0fc0625 100644 (file)
@@ -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.