From: Mike Bayer Date: Mon, 24 Jul 2017 21:22:23 +0000 (-0400) Subject: - 1.2.0b2 X-Git-Tag: rel_1_2_0b2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32c4c8ace41a8eb269d4b6294a9cfac1d8411e7d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - 1.2.0b2 --- diff --git a/doc/build/changelog/changelog_12.rst b/doc/build/changelog/changelog_12.rst index 8c076a9bcd..fb5b6b6483 100644 --- a/doc/build/changelog/changelog_12.rst +++ b/doc/build/changelog/changelog_12.rst @@ -12,7 +12,17 @@ .. changelog:: :version: 1.2.0b2 - :include_notes_from: unreleased_12 + :released: July 24, 2017 + + .. change:: 4033 + :tags: bug, orm + :tickets: 4033 + + Fixed regression from 1.1.11 where adding additional non-entity + columns to a query that includes an entity with subqueryload + relationships would fail, due to an inspection added in 1.1.11 as a + result of :ticket:`4011`. + .. changelog:: :version: 1.2.0b1 diff --git a/doc/build/changelog/unreleased_12/4033.rst b/doc/build/changelog/unreleased_12/4033.rst deleted file mode 100644 index 680ad2f603..0000000000 --- a/doc/build/changelog/unreleased_12/4033.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: 4033 - :tags: bug, orm - :tickets: 4033 - - Fixed regression from 1.1.11 where adding additional non-entity - columns to a query that includes an entity with subqueryload - relationships would fail, due to an inspection added in 1.1.11 as a - result of :ticket:`4011`. - diff --git a/doc/build/conf.py b/doc/build/conf.py index eadd07dfc0..5a1d66aef8 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -110,9 +110,9 @@ copyright = u'2007-2017, the SQLAlchemy authors and contributors' # The short X.Y version. version = "1.2" # The full version, including alpha/beta/rc tags. -release = "1.2.0b1" +release = "1.2.0b2" -release_date = "July 10, 2017" +release_date = "July 24, 2017" site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org") site_adapter_template = "docs_adapter.mako"