From: Mike Bayer Date: Thu, 31 Oct 2019 15:57:56 +0000 (-0400) Subject: - 1.3.0 X-Git-Tag: rel_1_3_0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=973a67d97055136414b1cca7d806239924bed458;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.3.0 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 2e7fca8f..b2de7819 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,31 @@ Changelog .. changelog:: :version: 1.3.0 - :include_notes_from: unreleased + :released: October 31, 2019 + + .. change:: + :tags: feature, command + :tickets: 608 + + Added support for ALEMBIC_CONFIG environment variable, + refers to the location of the alembic configuration script + in lieu of using the -c command line option. + + + .. change:: + :tags: bug, autogenerate + :tickets: 131 + + Fixed bug in new Variant autogenerate where the order of the arguments to + Variant were mistakenly reversed. + + .. change:: + :tags: change, compatibility + + Some internal modifications have been made to how the names of indexes and + unique constraints work to make use of new functions added in SQLAlchemy + 1.4, so that SQLAlchemy has more flexibility over how naming conventions + may be applied to these objects. .. changelog:: :version: 1.2.1 diff --git a/docs/build/conf.py b/docs/build/conf.py index 84563e5d..1338afa2 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -85,8 +85,8 @@ copyright = u"2010-2019, Mike Bayer" # noqa # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.2.1" -release_date = "September 24, 2019" +release = "1.3.0" +release_date = "October 31, 2019" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/131.rst b/docs/build/unreleased/131.rst deleted file mode 100644 index a5d5141e..00000000 --- a/docs/build/unreleased/131.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 131 - - Fixed bug in new Variant autogenerate where the order of the arguments to - Variant were mistakenly reversed. diff --git a/docs/build/unreleased/608.rst b/docs/build/unreleased/608.rst deleted file mode 100644 index ad494518..00000000 --- a/docs/build/unreleased/608.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: feature, command - :tickets: 608 - - Added support for ALEMBIC_CONFIG environment variable, - refers to the location of the alembic configuration script - in lieu of using the -c command line option. - diff --git a/docs/build/unreleased/sqla14_4911.rst b/docs/build/unreleased/sqla14_4911.rst deleted file mode 100644 index 71463cb7..00000000 --- a/docs/build/unreleased/sqla14_4911.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. change:: - :tags: change, compatibility - - Some internal modifications have been made to how the names of indexes and - unique constraints work to make use of new functions added in SQLAlchemy - 1.4, so that SQLAlchemy has more flexibility over how naming conventions - may be applied to these objects.