summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/build/changelog.rst19
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/1147.rst8
-rw-r--r--docs/build/unreleased/1152.rst7
4 files changed, 20 insertions, 18 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index fa6dcc0..a949c45 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,24 @@ Changelog
.. changelog::
:version: 1.9.2
- :include_notes_from: unreleased
+ :released: January 14, 2023
+
+ .. change::
+ :tags: bug, typing
+ :tickets: 1146, 1147
+
+ Fixed typing definitions for :meth:`.EnvironmentContext.get_x_argument`.
+
+ Typing stubs are now generated for overloaded proxied methods such as
+ :meth:`.EnvironmentContext.get_x_argument`.
+
+ .. change::
+ :tags: bug, autogenerate
+ :tickets: 1152
+
+ Fixed regression caused by :ticket:`1145` where the string transformations
+ applied to server defaults caused expressions such as ``(getdate())`` to no
+ longer compare as equivalent on SQL Server, others.
.. changelog::
:version: 1.9.1
diff --git a/docs/build/conf.py b/docs/build/conf.py
index a8c23d3..37e271a 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -95,8 +95,8 @@ copyright = "2010-2023, Mike Bayer" # noqa
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.9.1"
-release_date = "December 23, 2022"
+release = "1.9.2"
+release_date = "January 14, 2023"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1147.rst b/docs/build/unreleased/1147.rst
deleted file mode 100644
index 5f6f7de..0000000
--- a/docs/build/unreleased/1147.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
- :tags: bug, typing
- :tickets: 1146, 1147
-
- Fixed typing definitions for :meth:`.EnvironmentContext.get_x_argument`.
-
- Typing stubs are now generated for overloaded proxied methods such as
- :meth:`.EnvironmentContext.get_x_argument`. \ No newline at end of file
diff --git a/docs/build/unreleased/1152.rst b/docs/build/unreleased/1152.rst
deleted file mode 100644
index c5af2d5..0000000
--- a/docs/build/unreleased/1152.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: bug, autogenerate
- :tickets: 1152
-
- Fixed regression caused by :ticket:`1145` where the string transformations
- applied to server defaults caused expressions such as ``(getdate())`` to no
- longer compare as equivalent on SQL Server, others.