From: Daniele Varrazzo Date: Tue, 2 Dec 2025 19:10:09 +0000 (+0100) Subject: chore: bump psycopg package version to 3.3.1 X-Git-Tag: 3.3.1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bdd78cf4360b9229ab3f641c646e232fc69cc8a;p=thirdparty%2Fpsycopg.git chore: bump psycopg package version to 3.3.1 --- diff --git a/docs/news.rst b/docs/news.rst index c8d569831..d8ee8747e 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -7,18 +7,15 @@ ``psycopg`` release notes ========================= -Future releases +Current release --------------- -Psycopg 3.3.1 (unreleased) -^^^^^^^^^^^^^^^^^^^^^^^^^^ +Psycopg 3.3.1 +^^^^^^^^^^^^^ Fix iteration on server-side cursors (:ticket:`#1226`). -Current release ---------------- - Psycopg 3.3.0 ^^^^^^^^^^^^^ diff --git a/psycopg/pyproject.toml b/psycopg/pyproject.toml index eb904f561..ea64acddb 100644 --- a/psycopg/pyproject.toml +++ b/psycopg/pyproject.toml @@ -7,7 +7,7 @@ name = "psycopg" description = "PostgreSQL database adapter for Python" # STOP AND READ! if you change: -version = "3.3.1.dev1" +version = "3.3.1" # also change: # - `docs/news.rst` to declare this as the current version or an unreleased one; # - `psycopg_c/pyproject.toml` to the same version; @@ -60,10 +60,10 @@ content-type = "text/x-rst" [project.optional-dependencies] c = [ - "psycopg-c == 3.3.1.dev1; implementation_name != \"pypy\"", + "psycopg-c == 3.3.1; implementation_name != \"pypy\"", ] binary = [ - "psycopg-binary == 3.3.1.dev1; implementation_name != \"pypy\"", + "psycopg-binary == 3.3.1; implementation_name != \"pypy\"", ] pool = [ "psycopg-pool", diff --git a/psycopg_c/pyproject.toml b/psycopg_c/pyproject.toml index 864c24b8b..e1279a82d 100644 --- a/psycopg_c/pyproject.toml +++ b/psycopg_c/pyproject.toml @@ -24,7 +24,7 @@ cython-requires = ["Cython >= 3.1.1"] [project] name = "psycopg-c" description = "PostgreSQL database adapter for Python -- C optimisation distribution" -version = "3.3.1.dev1" +version = "3.3.1" license = "LGPL-3.0-only" license-files = ["LICENSE.txt"] classifiers = [