summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2018-10-31 16:32:36 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2018-10-31 16:32:36 -0400
commitecab9967b08b9fa71a985ca2de61884e3f6e0c5d (patch)
tree8a5c88c3707909372b5cbaf7907db9e58b9234a5
parentaf5586762905aa9115cbcd2af26bcd7087c264ed (diff)
downloadalembic-rel_1_0_2.tar.gz
- 1.0.2rel_1_0_2
-rw-r--r--docs/build/changelog.rst21
-rw-r--r--docs/build/unreleased/513.rst8
-rw-r--r--docs/build/unreleased/515.rst9
3 files changed, 20 insertions, 18 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index c1c80e4..a0b0f49 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,26 @@ Changelog
.. changelog::
:version: 1.0.2
- :include_notes_from: unreleased
+ :released: October 31, 2018
+
+ .. change::
+ :tags: bug, autogenerate
+ :tickets: 515
+
+ The ``system=True`` flag on :class:`.Column`, used primarily in conjunction
+ with the Postgresql "xmin" column, now renders within the autogenerate
+ render process, allowing the column to be excluded from DDL. Additionally,
+ adding a system=True column to a model will produce no autogenerate diff as
+ this column is implicitly present in the database.
+
+ .. change::
+ :tags: bug, mssql
+ :tickets: 513
+
+ Fixed issue where usage of the SQL Server ``mssql_include`` option within a
+ :meth:`.Operations.create_index` would raise a KeyError, as the additional
+ column(s) need to be added to the table object used by the construct
+ internally.
.. changelog::
:version: 1.0.1
diff --git a/docs/build/unreleased/513.rst b/docs/build/unreleased/513.rst
deleted file mode 100644
index 87fe332..0000000
--- a/docs/build/unreleased/513.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
- :tags: bug, mssql
- :tickets: 513
-
- Fixed issue where usage of the SQL Server ``mssql_include`` option within a
- :meth:`.Operations.create_index` would raise a KeyError, as the additional
- column(s) need to be added to the table object used by the construct
- internally.
diff --git a/docs/build/unreleased/515.rst b/docs/build/unreleased/515.rst
deleted file mode 100644
index 73cf85d..0000000
--- a/docs/build/unreleased/515.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
- :tags: bug, autogenerate
- :tickets: 515
-
- The ``system=True`` flag on :class:`.Column`, used primarily in conjunction
- with the Postgresql "xmin" column, now renders within the autogenerate
- render process, allowing the column to be excluded from DDL. Additionally,
- adding a system=True column to a model will produce no autogenerate diff as
- this column is implicitly present in the database.