mirror of https://github.com/apache/cassandra
baseline driver versions at 1.0.0
Patch by eevans; reviewed by brandon.williams for CASSANDRA-2374 git-svn-id: https://svn.apache.org/repos/asf/cassandra/trunk@1084815 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
591b854407
commit
b8d4154a89
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from os.path import abspath, join, dirname
|
|||
|
||||
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",
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from os.path import abspath, join, dirname
|
|||
|
||||
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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue