.. changelog::
:version: 1.3.15
- :include_notes_from: unreleased_13
+ :released: March 11, 2020
+
+ .. change::
+ :tags: bug, orm
+ :tickets: 5194
+
+ Adjusted the error message emitted by :meth:`.Query.join` when a left hand
+ side can't be located that the :meth:`.Query.select_from` method is the
+ best way to resolve the issue. Also, within the 1.3 series, used a
+ deterministic ordering when determining the FROM clause from a given column
+ entity passed to :class:`.Query` so that the same expression is determined
+ each time.
+
+
+ .. change::
+ :tags: orm, bug
+ :tickets: 5196
+
+ Fixed regression in 1.3.14 due to :ticket:`4849` where a sys.exc_info()
+ call failed to be invoked correctly when a flush error would occur. Test
+ coverage has been added for this exception case.
+
.. changelog::
:version: 1.3.14
+++ /dev/null
-.. change::
- :tags: bug, orm
- :tickets: 5194
-
- Adjusted the error message emitted by :meth:`.Query.join` when a left hand
- side can't be located that the :meth:`.Query.select_from` method is the
- best way to resolve the issue. Also, within the 1.3 series, used a
- deterministic ordering when determining the FROM clause from a given column
- entity passed to :class:`.Query` so that the same expression is determined
- each time.
-
+++ /dev/null
-.. change::
- :tags: orm, bug
- :tickets: 5196
-
- Fixed regression in 1.3.14 due to :ticket:`4849` where a sys.exc_info()
- call failed to be invoked correctly when a flush error would occur. Test
- coverage has been added for this exception case.
-
# The short X.Y version.
version = "1.3"
# The full version, including alpha/beta/rc tags.
-release = "1.3.14"
+release = "1.3.15"
-release_date = "March 10, 2020"
+release_date = "March 11, 2020"
site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
site_adapter_template = "docs_adapter.mako"