You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ee...@apache.org on 2011/03/24 01:26:56 UTC

svn commit: r1084815 - in /cassandra/trunk: build.xml drivers/py/setup.py drivers/txpy/setup.py

Author: eevans
Date: Thu Mar 24 00:26:56 2011
New Revision: 1084815

URL: http://svn.apache.org/viewvc?rev=1084815&view=rev
Log:
baseline driver versions at 1.0.0

Patch by eevans; reviewed by brandon.williams for CASSANDRA-2374

Modified:
    cassandra/trunk/build.xml
    cassandra/trunk/drivers/py/setup.py
    cassandra/trunk/drivers/txpy/setup.py

Modified: cassandra/trunk/build.xml
URL: http://svn.apache.org/viewvc/cassandra/trunk/build.xml?rev=1084815&r1=1084814&r2=1084815&view=diff
==============================================================================
--- cassandra/trunk/build.xml (original)
+++ cassandra/trunk/build.xml Thu Mar 24 00:26:56 2011
@@ -55,6 +55,7 @@
     <property name="test.distributed.src" value="${test.dir}/distributed"/>
     <property name="dist.dir" value="${build.dir}/dist"/>
     <property name="base.version" value="0.8.0"/>
+    <property name="cql.driver.version" value="1.0.0" />
     <condition property="version" value="${base.version}">
       <isset property="release"/>
     </condition>
@@ -431,7 +432,7 @@
       </jar>
 
       <!-- CQL driver Jar -->
-      <jar jarfile="${build.dir}/${ant.project.name}-cql-${version}.jar"
+      <jar jarfile="${build.dir}/${ant.project.name}-cql-${cql.driver.version}.jar"
            basedir="${build.classes.cql}">
         <manifest>
           <attribute name="Implementation-Title" value="Cassandra"/>

Modified: cassandra/trunk/drivers/py/setup.py
URL: http://svn.apache.org/viewvc/cassandra/trunk/drivers/py/setup.py?rev=1084815&r1=1084814&r2=1084815&view=diff
==============================================================================
--- cassandra/trunk/drivers/py/setup.py (original)
+++ cassandra/trunk/drivers/py/setup.py Thu Mar 24 00:26:56 2011
@@ -20,7 +20,7 @@ from os.path import abspath, join, dirna
 
 setup(
     name="cql",
-    version="1.0",
+    version="1.0.0",
     description="Cassandra Query Language driver",
     long_description=open(abspath(join(dirname(__file__), 'README'))).read(),
     url="http://cassandra.apache.org",

Modified: cassandra/trunk/drivers/txpy/setup.py
URL: http://svn.apache.org/viewvc/cassandra/trunk/drivers/txpy/setup.py?rev=1084815&r1=1084814&r2=1084815&view=diff
==============================================================================
--- cassandra/trunk/drivers/txpy/setup.py (original)
+++ cassandra/trunk/drivers/txpy/setup.py Thu Mar 24 00:26:56 2011
@@ -20,7 +20,7 @@ from os.path import abspath, join, dirna
 
 setup(
     name="txcql",
-    version="1.0",
+    version="1.0.0",
     description="Cassandra Query Language driver",
     long_description=open(abspath(join(dirname(__file__), 'README'))).read(),
     url="http://cassandra.apache.org",