]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix versionadded for aggregate_order_by
authorFederico Caselli <cfederico87@gmail.com>
Sun, 2 Nov 2025 18:54:02 +0000 (19:54 +0100)
committerFederico Caselli <cfederico87@gmail.com>
Sun, 2 Nov 2025 18:54:10 +0000 (19:54 +0100)
Change-Id: I499e0501a20c72cb20ea580b307d4233ba01d508

lib/sqlalchemy/sql/_elements_constructors.py
lib/sqlalchemy/sql/functions.py

index 2b37c12d27ef50af94c2754650e17d6cbae1eeb8..8b3248b9bcab50431df074bef461fbd49bea7d12 100644 (file)
@@ -2021,7 +2021,7 @@ def aggregate_order_by(
     :paramref:`_functions.aggregate_strings.order_by` parameter to indicate a
     dialect-agnostic ORDER BY expression.
 
-    .. versionadded:: 2.0.44 Generalized the PostgreSQL-specific
+    .. versionadded:: 2.1 Generalized the PostgreSQL-specific
        :func:`_postgresql.aggregate_order_by` function to a method on
        :class:`.Function` that is backend agnostic.
 
index dda890c0b5cbabc57b388793551a9ebb8f4b11a0..d4aafd362592339db9aeaba3fcd6417f4c1074f9 100644 (file)
@@ -483,7 +483,7 @@ class FunctionElement(Executable, ColumnElement[_T], FromClause, Generative):
 
         See :func:`_expression.aggregate_order_by` for a full description.
 
-        .. versionadded:: 2.0.44 Generalized the PostgreSQL-specific
+        .. versionadded:: 2.1 Generalized the PostgreSQL-specific
           :func:`_postgresql.aggregate_order_by` function to a method on
           :class:`.Function` that is backend agnostic.