]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix missing/incorrect version ids
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 20 Oct 2012 22:57:52 +0000 (18:57 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 20 Oct 2012 22:57:52 +0000 (18:57 -0400)
doc/build/changelog/changelog_05.rst
doc/build/changelog/changelog_07.rst
doc/build/changelog/changelog_08.rst

index a02a67fcfa960cb3fa728ded9844356aa4031e64..0bcc1aa3f1963f55ab3e34534892703de94e52e5 100644 (file)
       added BFILE to reflected type names
 
 .. changelog::
-    :version: 0.5beta3
+    :version: 0.5.0beta3
     :released: Mon Aug 04 2008
 
     .. change::
       always optional for use with existing tables.)
 
 .. changelog::
-    :version: 0.5beta2
+    :version: 0.5.0beta2
     :released: Mon Jul 14 2008
 
     .. change::
       to be passed to the Table constructor.
 
 .. changelog::
-    :version: 0.5beta1
+    :version: 0.5.0beta1
     :released: Thu Jun 12 2008
 
     .. change::
index 8029339a2fef4cd4f084638436977c3c2159782b..7b28f5f2302cbf6209da90cc8894591970d04772 100644 (file)
       operators are present as methods like all
       the other operators.
 
-    .. change::
-        :tags: bug, sql
-        :tickets: 2525
-
-      When the primary key column of a Table
-      is replaced, such as via extend_existing,
-      the "auto increment" column used by insert()
-      constructs is reset.  Previously it would
-      remain referring to the previous primary
-      key column.
-
     .. change::
         :tags: engine, bug
         :tickets: 2522
       for connections would leave those
       threads waiting for the duration of
       the timeout on the old pool (or indefinitely
-      if timeout was disabled).   The fix
+      if timeout was disabled).  The fix
       now notifies those waiters with a special
       exception case and has them move onto
       the new pool.
       attempts to remove "." from column names
       returned by SQLite cursor.description.
 
+    .. change::
+        :tags: sqlite, bug
+        :tickets: 2525
+
+      When the primary key column of a Table
+      is replaced, such as via extend_existing,
+      the "auto increment" column used by insert()
+      constructs is reset.  Previously it would
+      remain referring to the previous primary
+      key column.
+
 .. changelog::
     :version: 0.7.6
     :released: Wed Mar 14 2012
       to get everything including subqueries in the
       columns clause, etc.
 
+.. changelog::
+    :version: 0.7.5
+    :released: Sat Jan 28 2012
+
     .. change::
         :tags: orm, bug
         :tickets: 2389
       weakref callback was invoked.
 
     .. change::
-        :tags: bug, Py3K
+        :tags: bug, py3k
         :tickets: 2348
 
       Fixed inappropriate usage of util.py3k
       Fixed large_collection.py to close the
       session before dropping tables.
 
+.. changelog::
+    :version: 0.7.4
+    :released: Fri Dec 09 2011
+
     .. change::
         :tags: orm, bug
         :tickets: 2315
       added CURRENT to reserved word list. Also in 0.6.9.
 
     .. change::
-        :tags: ext
+        :tags: oracle
         :tickets: 
 
       Fixed bug in the mutable extension whereby
       would not get instrumented.
 
     .. change::
-        :tags: ext
+        :tags: oracle
         :tickets: 
 
       Fixed bug in the mutable extension whereby
     :released: Fri May 20 2011
 
     .. change::
-        :tags: mysql
+        :tags: 
         :tickets: 
 
       This section documents those changes from 0.7b4
     :released: Sat Feb 12 2011
 
     .. change::
-        :tags: examples
+        :tags: 
         :tickets: 
 
       Detailed descriptions of each change below are
       FB/Interbase version idents are parsed into a structure
       such as (8, 1, 1, 'interbase') or (2, 1, 588, 'firebird')
       so they can be distinguished.
-
-    .. change::
-        :tags: drizzle
-        :tickets: 2003
-
-      New dialect for Drizzle, a MySQL variant.  Uses MySQL-python
-      for the DBAPI.
index a093ffb4823019112ed7909a248a62cbffd2c85d..40487001a68a2bda83868c94e90ea5b73d215ec9 100644 (file)
       name was omitted which apparently creates the
       index in the default schema, rather than that
       of the table.
-
-    .. change::
-        :tags: removed, extensions
-        :tickets: 2262
-
-      The SQLSoup extension is removed from
-      SQLAlchemy, and is now an external project.
-      See http://pypi.python.org/pypi/sqlsoup .