From: Mike Bayer Date: Wed, 17 Oct 2018 14:51:08 +0000 (-0400) Subject: - 1.0.1 X-Git-Tag: rel_1_0_1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=defbc5b32a169679fc7df45f83b682beb453a2bc;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.0.1 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 83100132..56ebf395 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,28 @@ Changelog .. changelog:: :version: 1.0.1 - :include_notes_from: unreleased + :released: October 17, 2018 + + .. change:: + :tags: bug, commands + :tickets: 497 + + Fixed an issue where revision descriptions were essentially + being formatted twice. Any revision description that contained + characters like %, writing output to stdout will fail because + the call to config.print_stdout attempted to format any + additional args passed to the function. + This fix now only applies string formatting if any args are provided + along with the output text. + + .. change:: + :tags: bug, autogenerate + :tickets: 512 + + Fixed issue where removed method ``union_update()`` was used when a + customized :class:`.MigrationScript` instance included entries in the + ``.imports`` data member, raising an AttributeError. + .. changelog:: :version: 1.0.0 diff --git a/docs/build/unreleased/497.rst b/docs/build/unreleased/497.rst deleted file mode 100644 index 938beafb..00000000 --- a/docs/build/unreleased/497.rst +++ /dev/null @@ -1,11 +0,0 @@ -.. change:: - :tags: bug, commands - :tickets: 497 - - Fixed an issue where revision descriptions were essentially - being formatted twice. Any revision description that contained - characters like %, writing output to stdout will fail because - the call to config.print_stdout attempted to format any - additional args passed to the function. - This fix now only applies string formatting if any args are provided - along with the output text. \ No newline at end of file diff --git a/docs/build/unreleased/512.rst b/docs/build/unreleased/512.rst deleted file mode 100644 index 8201a53f..00000000 --- a/docs/build/unreleased/512.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 512 - - Fixed issue where removed method ``union_update()`` was used when a - customized :class:`.MigrationScript` instance included entries in the - ``.imports`` data member, raising an AttributeError. -