]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.1.18 rel_1_1_18
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 6 Mar 2018 19:04:26 +0000 (14:04 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 6 Mar 2018 19:04:26 +0000 (14:04 -0500)
doc/build/changelog/changelog_11.rst
doc/build/changelog/unreleased_11/4205.rst [deleted file]
doc/build/changelog/unreleased_11/4208.rst [deleted file]
doc/build/conf.py

index e5feb1f3f5d6f1d7f89d7097f536b5afac311062..fd1a262a3b5e067468d7ec8888d8e8105a4b98ea 100644 (file)
 
 .. changelog::
     :version: 1.1.18
-    :include_notes_from: unreleased_11
+    :released: March 6, 2018
+
+    .. change::
+        :tags: bug, mysql
+        :tickets: 4205
+        :versions: 1.2.5, 1.3.0b1
+
+        MySQL dialects now query the server version using ``SELECT @@version``
+        explicitly to the server to ensure we are getting the correct version
+        information back.   Proxy servers like MaxScale interfere with the value
+        that is passed to the DBAPI's connection.server_version value so this
+        is no longer reliable.
+
+    .. change::
+        :tags: bug, postgresql, py3k
+        :tickets: 4208
+        :versions: 1.2.5, 1.3.0b1
+
+        Fixed bug in Postgresql COLLATE / ARRAY adjustment first introduced
+        in :ticket:`4006` where new behaviors in Python 3.7 regular expressions
+        caused the fix to fail.
 
 .. changelog::
     :version: 1.1.17
diff --git a/doc/build/changelog/unreleased_11/4205.rst b/doc/build/changelog/unreleased_11/4205.rst
deleted file mode 100644 (file)
index 91b276b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, mysql
-    :tickets: 4205
-    :versions: 1.2.5, 1.3.0b1
-
-    MySQL dialects now query the server version using ``SELECT @@version``
-    explicitly to the server to ensure we are getting the correct version
-    information back.   Proxy servers like MaxScale interfere with the value
-    that is passed to the DBAPI's connection.server_version value so this
-    is no longer reliable.
diff --git a/doc/build/changelog/unreleased_11/4208.rst b/doc/build/changelog/unreleased_11/4208.rst
deleted file mode 100644 (file)
index 517c83d..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, postgresql, py3k
-    :tickets: 4208
-    :versions: 1.2.5, 1.3.0b1
-
-    Fixed bug in Postgresql COLLATE / ARRAY adjustment first introduced
-    in :ticket:`4006` where new behaviors in Python 3.7 regular expressions
-    caused the fix to fail.
index 762be4583f05076c63cf397b6c400028b6894add..d5ecae9427f8775052609c55226f1f9ca60bde50 100644 (file)
@@ -110,9 +110,9 @@ copyright = u'2007-2018, the SQLAlchemy authors and contributors'
 # The short X.Y version.
 version = "1.1"
 # The full version, including alpha/beta/rc tags.
-release = "1.1.17"
+release = "1.1.18"
 
-release_date = "February 22, 2018"
+release_date = "March 6, 2018"
 
 site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"