summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-04-15 11:38:59 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-04-15 11:38:59 -0400
commit104379b5b5f52dd8a98aaee61e60668cdf9abf1a (patch)
tree8808a6013a8ac3fe9874800b8217ba7cf47b92c5
parentd46de05b8b3281a85e6b107ef3f3407e232eb9e9 (diff)
downloadalembic-104379b5b5f52dd8a98aaee61e60668cdf9abf1a.tar.gz
- 1.0.9rel_1_0_9
-rw-r--r--docs/build/changelog.rst13
-rw-r--r--docs/build/unreleased/548.rst10
2 files changed, 12 insertions, 11 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 2c528f2..14a524c 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,18 @@ Changelog
.. changelog::
:version: 1.0.9
- :include_notes_from: unreleased
+ :released: April 15, 2019
+
+ .. change::
+ :tags: bug, operations
+ :tickets: 548
+
+ Simplified the internal scheme used to generate the ``alembic.op`` namespace
+ to no longer attempt to generate full method signatures (e.g. rather than
+ generic ``*args, **kw``) as this was not working in most cases anyway, while
+ in rare circumstances it would in fact sporadically have access to the real
+ argument names and then fail when generating the function due to missing
+ symbols in the argument signature.
.. changelog::
:version: 1.0.8
diff --git a/docs/build/unreleased/548.rst b/docs/build/unreleased/548.rst
deleted file mode 100644
index 87f6798..0000000
--- a/docs/build/unreleased/548.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
- :tags: bug, operations
- :tickets: 548
-
- Simplified the internal scheme used to generate the ``alembic.op`` namespace
- to no longer attempt to generate full method signatures (e.g. rather than
- generic ``*args, **kw``) as this was not working in most cases anyway, while
- in rare circumstances it would in fact sporadically have access to the real
- argument names and then fail when generating the function due to missing
- symbols in the argument signature.