]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.4.17 rel_1_4_17
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 29 May 2021 20:14:52 +0000 (16:14 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 29 May 2021 20:14:52 +0000 (16:14 -0400)
doc/build/changelog/changelog_14.rst
doc/build/changelog/unreleased_14/6558.rst [deleted file]
doc/build/conf.py

index 15db5c99af44b06246b8a054409c6e56f0821574..8713a14ff68e5c039bf18c907c91b1cfe4d9bd27 100644 (file)
@@ -15,7 +15,16 @@ This document details individual issue-level changes made throughout
 
 .. changelog::
     :version: 1.4.17
-    :include_notes_from: unreleased_14
+    :released: May 29, 2021
+
+    .. change::
+        :tags: bug, orm, regression
+        :tickets: 6558
+
+        Fixed regression caused by just-released performance fix mentioned in #6550
+        where a query.join() to a relationship could produce an AttributeError if
+        the query were made against non-ORM structures only, a fairly unusual
+        calling pattern.
 
 .. changelog::
     :version: 1.4.16
diff --git a/doc/build/changelog/unreleased_14/6558.rst b/doc/build/changelog/unreleased_14/6558.rst
deleted file mode 100644 (file)
index 030c409..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, orm, regression
-    :tickets: 6558
-
-    Fixed regression caused by just-released performance fix mentioned in #6550
-    where a query.join() to a relationship could produce an AttributeError if
-    the query were made against non-ORM structures only, a fairly unusual
-    calling pattern.
index 94a63da3fc6b6a9b96c3b29a723a8e901ab545f7..d305ca0d98ee703f7f143ed0287aa04fb6a5a0ab 100644 (file)
@@ -195,9 +195,9 @@ copyright = u"2007-2021, the SQLAlchemy authors and contributors"  # noqa
 # The short X.Y version.
 version = "1.4"
 # The full version, including alpha/beta/rc tags.
-release = "1.4.16"
+release = "1.4.17"
 
-release_date = "May 28, 2021"
+release_date = "May 29, 2021"
 
 site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"