diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-03-09 14:32:32 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-03-09 14:32:32 -0500 |
| commit | f7d2556cd35735182822760d22338e1c6b35ef31 (patch) | |
| tree | d3d271e86dc3077588de1f04144823ec83e21b0b /doc | |
| parent | cbc31716c2cef29f45506c6227c2154e3093c845 (diff) | |
| download | sqlalchemy-f7d2556cd35735182822760d22338e1c6b35ef31.tar.gz | |
- 1.3.1rel_1_3_1
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_13.rst | 17 | ||||
| -rw-r--r-- | doc/build/changelog/unreleased_13/4522.rst | 6 | ||||
| -rw-r--r-- | doc/build/changelog/unreleased_13/4525.rst | 7 | ||||
| -rw-r--r-- | doc/build/conf.py | 4 |
4 files changed, 18 insertions, 16 deletions
diff --git a/doc/build/changelog/changelog_13.rst b/doc/build/changelog/changelog_13.rst index a7f829652..95e707855 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 cd0729600..000000000 --- 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 d5b6282a4..000000000 --- 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 38d2497bf..0b6e458dc 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" |
