summaryrefslogtreecommitdiff
path: root/docs/build
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-12-23 14:26:23 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2022-12-23 14:26:23 -0500
commit613c23766b4fbd81f0415b870158aef4c6534eae (patch)
treebb9c7fb3d38b73d78f6c9f72d9c950a442cf1702 /docs/build
parent75e0ed3250fb3967ccd03ab8f9229b781bff7f94 (diff)
downloadalembic-613c23766b4fbd81f0415b870158aef4c6534eae.tar.gz
- 1.9.1rel_1_9_1
Diffstat (limited to 'docs/build')
-rw-r--r--docs/build/changelog.rst32
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/1145.rst29
3 files changed, 33 insertions, 32 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index a3a20ab..9efcce0 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,37 @@ Changelog
.. changelog::
:version: 1.9.1
- :include_notes_from: unreleased
+ :released: December 23, 2022
+
+ .. change::
+ :tags: bug, autogenerate
+ :tickets: 1145
+
+ Fixed issue where server default compare would not work for string defaults
+ that contained backslashes, due to mis-rendering of these values when
+ comparing their contents.
+
+
+ .. change::
+ :tags: bug, oracle
+
+ Implemented basic server default comparison for the Oracle backend;
+ previously, Oracle's formatting of reflected defaults prevented any
+ matches from occurring.
+
+ .. change::
+ :tags: bug, sqlite
+
+ Adjusted SQLite's compare server default implementation to better handle
+ defaults with or without parens around them, from both the reflected and
+ the local metadata side.
+
+ .. change::
+ :tags: bug, mssql
+
+ Adjusted SQL Server's compare server default implementation to better
+ handle defaults with or without parens around them, from both the reflected
+ and the local metadata side.
.. changelog::
:version: 1.9.0
diff --git a/docs/build/conf.py b/docs/build/conf.py
index c77f2a4..5a89890 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -95,8 +95,8 @@ copyright = "2010-2022, Mike Bayer" # noqa
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.9.0"
-release_date = "December 15, 2022"
+release = "1.9.1"
+release_date = "December 23, 2022"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1145.rst b/docs/build/unreleased/1145.rst
deleted file mode 100644
index eb11a0a..0000000
--- a/docs/build/unreleased/1145.rst
+++ /dev/null
@@ -1,29 +0,0 @@
-.. change::
- :tags: bug, autogenerate
- :tickets: 1145
-
- Fixed issue where server default compare would not work for string defaults
- that contained backslashes, due to mis-rendering of these values when
- comparing their contents.
-
-
-.. change::
- :tags: bug, oracle
-
- Implemented basic server default comparison for the Oracle backend;
- previously, Oracle's formatting of reflected defaults prevented any
- matches from occurring.
-
-.. change::
- :tags: bug, sqlite
-
- Adjusted SQLite's compare server default implementation to better handle
- defaults with or without parens around them, from both the reflected and
- the local metadata side.
-
-.. change::
- :tags: bug, mssql
-
- Adjusted SQL Server's compare server default implementation to better
- handle defaults with or without parens around them, from both the reflected
- and the local metadata side.