From: Daniele Varrazzo Date: Mon, 1 Dec 2025 03:18:59 +0000 (+0100) Subject: chore: bump psycopg package version to 3.3.0 X-Git-Tag: 3.3.0^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2322a9a9d445da6cd049683e91f2df3702357182;p=thirdparty%2Fpsycopg.git chore: bump psycopg package version to 3.3.0 --- diff --git a/docs/news.rst b/docs/news.rst index 8ac93a2cd..d0aeff505 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -7,11 +7,11 @@ ``psycopg`` release notes ========================= -Future releases +Current release --------------- -Psycopg 3.3.0 (unreleased) -^^^^^^^^^^^^^^^^^^^^^^^^^^ +Psycopg 3.3.0 +^^^^^^^^^^^^^ .. rubric:: New top-level features @@ -55,9 +55,6 @@ Psycopg 3.3.0 (unreleased) .. _iterables: https://docs.python.org/3/glossary.html#term-iterable -Current release ---------------- - Psycopg 3.2.13 ^^^^^^^^^^^^^^ diff --git a/psycopg/pyproject.toml b/psycopg/pyproject.toml index 358a101d8..34d436f9b 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.0.dev2" +version = "3.3.0" # 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.0.dev2; implementation_name != \"pypy\"", + "psycopg-c == 3.3.0; implementation_name != \"pypy\"", ] binary = [ - "psycopg-binary == 3.3.0.dev2; implementation_name != \"pypy\"", + "psycopg-binary == 3.3.0; implementation_name != \"pypy\"", ] pool = [ "psycopg-pool", diff --git a/psycopg_c/pyproject.toml b/psycopg_c/pyproject.toml index 3baeabfda..0e2614537 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.0.dev2" +version = "3.3.0" license = "LGPL-3.0-only" license-files = ["LICENSE.txt"] classifiers = [