]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.0.19 rel_1_0_19
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 3 Aug 2017 15:28:35 +0000 (11:28 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 3 Aug 2017 15:28:35 +0000 (11:28 -0400)
doc/build/changelog/changelog_10.rst
doc/build/changelog/unreleased_10/4035.rst [deleted file]
doc/build/conf.py

index c717713d72d2546127902b6aab6c8f8095124ab6..0e8ac702c7262c26c1381a24e50caffc9e4a0c16 100644 (file)
 
 .. changelog::
     :version: 1.0.19
-    :include_notes_from: unreleased_10
+    :released: August 3, 2017
+
+    .. change::
+        :tags: bug, oracle, performance, py2k
+        :tickets: 4035
+        :versions: 1.0.19, 1.1.13, 1.2.0b3
+
+        Fixed performance regression caused by the fix for :ticket:`3937` where
+        cx_Oracle as of version 5.3 dropped the ``.UNICODE`` symbol from its
+        namespace,  which was interpreted as cx_Oracle's "WITH_UNICODE" mode being
+        turned on unconditionally, which invokes functions on the SQLAlchemy
+        side which convert all strings to unicode unconditionally and causing
+        a performance impact.  In fact, per cx_Oracle's author the
+        "WITH_UNICODE" mode has been removed entirely as of 5.1, so the expensive unicode
+        conversion functions are no longer necessary and are disabled if
+        cx_Oracle 5.1 or greater is detected under Python 2.  The warning against
+        "WITH_UNICODE" mode that was removed under :ticket:`3937` is also restored.
 
 .. changelog::
     :version: 1.0.18
diff --git a/doc/build/changelog/unreleased_10/4035.rst b/doc/build/changelog/unreleased_10/4035.rst
deleted file mode 100644 (file)
index b1dcd7d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-.. change::
-    :tags: bug, oracle, performance, py2k
-    :tickets: 4035
-    :versions: 1.0.19, 1.1.13, 1.2.0b3
-
-    Fixed performance regression caused by the fix for :ticket:`3937` where
-    cx_Oracle as of version 5.3 dropped the ``.UNICODE`` symbol from its
-    namespace,  which was interpreted as cx_Oracle's "WITH_UNICODE" mode being
-    turned on unconditionally, which invokes functions on the SQLAlchemy
-    side which convert all strings to unicode unconditionally and causing
-    a performance impact.  In fact, per cx_Oracle's author the
-    "WITH_UNICODE" mode has been removed entirely as of 5.1, so the expensive unicode
-    conversion functions are no longer necessary and are disabled if
-    cx_Oracle 5.1 or greater is detected under Python 2.  The warning against
-    "WITH_UNICODE" mode that was removed under :ticket:`3937` is also restored.
index 8e87f18f7a9d214d3172bb3985bdb130b043a473..a7a1b888ac26a8cc9a3c1c499bd7c348f0e4ba29 100644 (file)
@@ -112,9 +112,9 @@ copyright = u'2007-2017, the SQLAlchemy authors and contributors'
 # The short X.Y version.
 version = "1.0"
 # The full version, including alpha/beta/rc tags.
-release = "1.0.18"
+release = "1.0.19"
 
-release_date = "July 24, 2017"
+release_date = "August 3, 2017"
 
 site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"