You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ca...@codespot.com on 2012/08/31 08:01:27 UTC

[cassandra-dbapi2] push by pcannon@gmail.com - release 1.1.0 on 2012-08-31 06:01 GMT

Revision: 09f223a58809
Author:   paul cannon <pa...@datastax.com>
Date:     Thu Aug 30 22:58:26 2012
Log:      release 1.1.0

http://code.google.com/a/apache-extras.org/p/cassandra-dbapi2/source/detail?r=09f223a58809

Modified:
  /CHANGES.txt
  /setup.py

=======================================
--- /CHANGES.txt	Mon Mar 26 11:24:24 2012
+++ /CHANGES.txt	Thu Aug 30 22:58:26 2012
@@ -1,3 +1,11 @@
+1.1.0 - 2012/08/30
+ * Support for CQL3 collections
+ * Unified type handling
+ * Add .column_types attribute to Cursor objects, which stores a list
+   of CassandraType objects corresponding to the types of the data
+   from .fetchone(). Use hasattr(cursor, 'supports_column_types') to
+   tell whether you're using a version of this library with that support.
+
  1.0.10 - 2012/03/26
   * Expose column name storage types
   * Fix terrible performance issue for large CQL queries
=======================================
--- /setup.py	Sun Aug 19 16:58:57 2012
+++ /setup.py	Thu Aug 30 22:58:26 2012
@@ -20,7 +20,7 @@

  setup(
      name="cql",
-    version="1.1.0-beta2",
+    version="1.1.0",
      description="Cassandra Query Language driver",
       
long_description=open(abspath(join(dirname(__file__), 'README'))).read(),
      maintainer='Cassandra DBAPI-2 Driver Team',