From: Mike Bayer Date: Sat, 9 Mar 2019 19:32:32 +0000 (-0500) Subject: - 1.3.1 X-Git-Tag: rel_1_3_1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7d2556cd35735182822760d22338e1c6b35ef31;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - 1.3.1 --- diff --git a/doc/build/changelog/changelog_13.rst b/doc/build/changelog/changelog_13.rst index a7f829652d..95e707855a 100644 --- a/doc/build/changelog/changelog_13.rst +++ b/doc/build/changelog/changelog_13.rst @@ -12,7 +12,22 @@ .. changelog:: :version: 1.3.1 - :include_notes_from: unreleased_13 + :released: March 9, 2019 + + .. change:: + :tags: bug, mssql + :tickets: 4525 + + Fixed regression in SQL Server reflection due to :ticket:`4393` where the + removal of open-ended ``**kw`` from the :class:`.Float` datatype caused + reflection of this type to fail due to a "scale" argument being passed. + + .. change:: + :tags: bug, orm, ext + :tickets: 4522 + + Fixed regression where an association proxy linked to a synonym would no + longer work, both at instance level and at class level. .. changelog:: :version: 1.3.0 diff --git a/doc/build/changelog/unreleased_13/4522.rst b/doc/build/changelog/unreleased_13/4522.rst deleted file mode 100644 index cd0729600d..0000000000 --- a/doc/build/changelog/unreleased_13/4522.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, orm, ext - :tickets: 4522 - - Fixed regression where an association proxy linked to a synonym would no - longer work, both at instance level and at class level. diff --git a/doc/build/changelog/unreleased_13/4525.rst b/doc/build/changelog/unreleased_13/4525.rst deleted file mode 100644 index d5b6282a46..0000000000 --- a/doc/build/changelog/unreleased_13/4525.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. change:: - :tags: bug, mssql - :tickets: 4525 - - Fixed regression in SQL Server reflection due to :ticket:`4393` where the - removal of open-ended ``**kw`` from the :class:`.Float` datatype caused - reflection of this type to fail due to a "scale" argument being passed. diff --git a/doc/build/conf.py b/doc/build/conf.py index 38d2497bff..0b6e458dcd 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -109,9 +109,9 @@ copyright = u'2007-2019, the SQLAlchemy authors and contributors' # The short X.Y version. version = "1.3" # The full version, including alpha/beta/rc tags. -release = "1.3.0" +release = "1.3.1" -release_date = "March 4, 2019" +release_date = "March 9, 2019" site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org") site_adapter_template = "docs_adapter.mako"