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/01/24 22:39:22 UTC

[cassandra-dbapi2] 2 new revisions pushed by pcannon@gmail.com on 2012-01-24 21:38 GMT

2 new revisions:

Revision: 1896dd1f784b
Author:   paul cannon <pa...@datastax.com>
Date:     Tue Jan 24 13:31:32 2012
Log:      fix test invocation in release steps...
http://code.google.com/a/apache-extras.org/p/cassandra-dbapi2/source/detail?r=1896dd1f784b

Revision: b47f87c93536
Author:   paul cannon <pa...@datastax.com>
Date:     Tue Jan 24 13:30:07 2012
Log:      release 1.0.8
http://code.google.com/a/apache-extras.org/p/cassandra-dbapi2/source/detail?r=b47f87c93536

==============================================================================
Revision: 1896dd1f784b
Author:   paul cannon <pa...@datastax.com>
Date:     Tue Jan 24 13:31:32 2012
Log:      fix test invocation in release steps

and note the need to update CHANGES.txt.

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

Modified:
  /releasing

=======================================
--- /releasing	Sat Jan  7 06:40:34 2012
+++ /releasing	Tue Jan 24 13:31:32 2012
@@ -9,8 +9,9 @@
  in master,

   * update 'version' in setup.py
- * `$ git commit -m "release ${version}" -- setup.py`
- * `$ PYTHONPATH=. CQL_TEST_HOST=9160 trial test`  (make sure all pass)
+ * update CHANGES.txt
+ * `$ git commit -m "release ${version}" -- setup.py CHANGES.txt`
+ * `$ PYTHONPATH=. CQL_TEST_PORT=9160 nosetests`  (make sure all pass)
   * `$ python setup.py sdist`
   * check that `dist/cql-${version}.tar.gz` has all expected files in the  
expected places
   * test it

==============================================================================
Revision: b47f87c93536
Author:   paul cannon <pa...@datastax.com>
Date:     Tue Jan 24 13:30:07 2012
Log:      release 1.0.8

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

Modified:
  /CHANGES.txt
  /setup.py

=======================================
--- /CHANGES.txt	Tue Dec 27 15:17:14 2011
+++ /CHANGES.txt	Tue Jan 24 13:30:07 2012
@@ -1,3 +1,8 @@
+1.0.8 - 2012/01/24
+ * Fix handling of comment-like markers inside CQL string literals
+   (since comments must be stripped out to achieve proper recognition
+   of named parameters)
+
  1.0.7 - 2011/12/27
   * Comply with ASF licensing requirements
   * Fixed unit test for TRUNCATE
=======================================
--- /setup.py	Tue Dec 27 15:17:14 2011
+++ /setup.py	Tue Jan 24 13:30:07 2012
@@ -20,7 +20,7 @@

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