]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- call this 1.2.0
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 26 Dec 2017 19:18:27 +0000 (14:18 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 26 Dec 2017 19:18:27 +0000 (14:18 -0500)
Change-Id: If8d60e5d44f387eba97fd9bb1dfa85947ce7f42f

doc/build/changelog/changelog_11.rst
doc/build/changelog/changelog_12.rst
doc/build/changelog/migration_12.rst
doc/build/changelog/unreleased_11/nulls_import.rst
doc/build/changelog/unreleased_11/ticket_4136.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/sql/operators.py

index 5a3c78fb30a592d7897008c75af8292f54a56fb4..d1000102cb601cb6fccdd7c51aa1f5fe64f8591b 100644 (file)
@@ -60,7 +60,7 @@
     .. change::
         :tags: bug, sql
         :tickets: 4126
-        :versions: 1.2.0b4
+        :versions: 1.2.0
 
         Fixed bug where ``__repr__`` of :class:`.ColumnDefault` would fail
         if the argument were a tuple.  Pull request courtesy Nicolas Caniart.
@@ -68,7 +68,7 @@
     .. change::
         :tags: bug, orm, declarative
         :tickets: 4124
-        :versions: 1.2.0b4
+        :versions: 1.2.0
 
         Fixed bug where a descriptor that is elsewhere a mapped column
         or relationship within a hierarchy based on :class:`.AbstractConcreteBase`
@@ -91,7 +91,7 @@
     .. change::
         :tags: bug, orm, ext
         :tickets: 4116
-        :versions: 1.2.0b4
+        :versions: 1.2.0
 
         Fixed bug where the association proxy would inadvertently link itself
         to an :class:`.AliasedClass` object if it were called first with
     .. change::
         :tags: bug, mysql
         :tickets: 4120
-        :versions: 1.2.0b4
+        :versions: 1.2.0
 
         MySQL 5.7.20 now warns for use of the @tx_isolation variable; a version
         check is now performed and uses @transaction_isolation instead
index 2e72321f5a89c23b76248bf55d5375d621d5ee47..3dca846fd8c868aeadf72e961ab1c0754669213b 100644 (file)
@@ -11,7 +11,7 @@
         :start-line: 5
 
 .. changelog::
-    :version: 1.2.0b4
+    :version: 1.2.0
     :include_notes_from: unreleased_12
 
 .. changelog::
         also applies it to all occurrences of the wildcard characters "%"
         and "_" automatically.  Pull request courtesy Diana Clarke.
 
-        .. note::  This feature has been changed as of 1.2.0b4 from its initial
+        .. note::  This feature has been changed as of 1.2.0 from its initial
            implementation in 1.2.0b2 such that autoescape is now passed as a
            boolean value, rather than a specific character to use as the escape
            character.
index c4ae0f9f5d4fce2bb2a3a0661ddd2aa87a8dd770..6d13bc15a12438aaef2907504d8b23c8597eb20a 100644 (file)
@@ -897,7 +897,7 @@ is used to avoid conflicts with settings like Postgresql's
 9.1, and MySQL's ``NO_BACKSLASH_ESCAPES`` settings.  The existing "escape" parameter
 can now be used to change the autoescape character, if desired.
 
-.. note::  This feature has been changed as of 1.2.0b4 from its initial
+.. note::  This feature has been changed as of 1.2.0 from its initial
    implementation in 1.2.0b2 such that autoescape is now passed as a boolean
    value, rather than a specific character to use as the escape character.
 
index c501b22f4130b1bb4d95007f58dbc97e8195a52d..b7619471e920f9fde1e7a2aaed1ef1bc2e7304e6 100644 (file)
@@ -1,6 +1,6 @@
 .. change::
     :tags: bug, sql
-    :versions: 1.2.0b4
+    :versions: 1.2.0
 
     Added :func:`.nullsfirst` and :func:`.nullslast` as top level imports
     in the ``sqlalchemy.`` and ``sqlalchemy.sql.`` namespace.  Pull request
index fa0e08476394a89345734487c7cb78e9b2fd8ecb..c4080f722cdc71662e1b07e6d2ffa23c69e42a6d 100644 (file)
@@ -1,7 +1,7 @@
 .. change::
     :tags: bug, mysql
     :tickets: 4136
-    :versions: 1.2.0b4
+    :versions: 1.2.0
 
     Fixed bug where the MySQL "concat" and "match" operators failed to
     propagate kwargs to the left and right expressions, causing compiler
index 61cec68f447822a8ab3633fad446175d4cae7521..4d280b382e9f74d75961138447256e6ca1190498 100644 (file)
@@ -130,7 +130,7 @@ from .schema import (
 from .inspection import inspect
 from .engine import create_engine, engine_from_config
 
-__version__ = '1.2.0b4'
+__version__ = '1.2.0'
 
 
 def __go(lcls):
index 0e8dec2a0d75db92f74bdf21abd1770240b16388..0769391872f6ce2d1d5647f6ee79af0b74802665 100644 (file)
@@ -644,7 +644,7 @@ class ColumnOperators(Operators):
 
           .. versionadded:: 1.2
 
-          .. versionchanged:: 1.2.0b4 The
+          .. versionchanged:: 1.2.0 The
             :paramref:`.ColumnOperators.startswith.autoescape` parameter is
              now a simple boolean rather than a character; the escape
              character itself is also escaped, and defaults to a forwards
@@ -732,7 +732,7 @@ class ColumnOperators(Operators):
 
           .. versionadded:: 1.2
 
-          .. versionchanged:: 1.2.0b4 The
+          .. versionchanged:: 1.2.0 The
             :paramref:`.ColumnOperators.endswith.autoescape` parameter is
              now a simple boolean rather than a character; the escape
              character itself is also escaped, and defaults to a forwards
@@ -820,7 +820,7 @@ class ColumnOperators(Operators):
 
           .. versionadded:: 1.2
 
-          .. versionchanged:: 1.2.0b4 The
+          .. versionchanged:: 1.2.0 The
             :paramref:`.ColumnOperators.contains.autoescape` parameter is
              now a simple boolean rather than a character; the escape
              character itself is also escaped, and defaults to a forwards