From: Federico Caselli Date: Wed, 6 Dec 2023 21:59:33 +0000 (+0100) Subject: correct version added in 312d92a3415ac252bbc98d1c180177ea113d18c2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=005a87c1ba58f5df256cbc30274cde910095c9c4;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git correct version added in 312d92a3415ac252bbc98d1c180177ea113d18c2 Change-Id: Ibfa367d14ba257a2f9b60694bb34a072548432d8 --- diff --git a/doc/build/changelog/unreleased_20/10247.rst b/doc/build/changelog/unreleased_21/10247.rst similarity index 100% rename from doc/build/changelog/unreleased_20/10247.rst rename to doc/build/changelog/unreleased_21/10247.rst diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index 525e8f4cf5..68be795399 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -3650,7 +3650,7 @@ class IdentityOptions(DialectKWArgs): :param order: optional boolean value; if ``True``, renders the ORDER keyword. - .. deprecated:: 2.0.21 Use ``oracle_order`` instead. + .. deprecated:: 2.1 Use ``oracle_order`` instead. """ self.start = start @@ -3678,7 +3678,7 @@ class IdentityOptions(DialectKWArgs): def order(self) -> Optional[bool]: """Alias of the ``dialect_kwargs`` ``'oracle_order'``. - .. deprecated:: 2.0.21 The 'order' attribute is deprecated. + .. deprecated:: 2.1 The 'order' attribute is deprecated. """ value: Optional[bool] = self.dialect_kwargs.get("oracle_order") return value @@ -6135,7 +6135,7 @@ class Identity(IdentityOptions, FetchedValue, SchemaItem): def on_null(self) -> Optional[bool]: """Alias of the ``dialect_kwargs`` ``'oracle_on_null'``. - .. deprecated:: 2.0.21 The 'on_null' attribute is deprecated. + .. deprecated:: 2.1 The 'on_null' attribute is deprecated. """ value: Optional[bool] = self.dialect_kwargs.get("oracle_on_null") return value