Skip to content

Commit

Permalink
release 1.2.1 (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
marsishandsome authored Jul 4, 2019
1 parent 8dbbb6a commit f91df02
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
TiSpark is a thin layer built for running Apache Spark on top of TiDB/TiKV to answer the complex OLAP queries. It takes advantages of both the Spark platform and the distributed TiKV cluster, at the same time, seamlessly glues to TiDB, the distributed OLTP database, to provide a Hybrid Transactional/Analytical Processing (HTAP) to serve as a one-stop solution for online transactions and analysis.

## Getting TiSpark
The current stable version is 1.2 which is compatible with Spark 2.1.0+.
The current stable version is 1.2.1 which is compatible with Spark 2.1.0+.

**When using Spark 2.1.0+, please follow the [document for Spark 2.1](./docs/userguide_spark2.1.md)**

Expand All @@ -19,20 +19,20 @@ If you are using maven, add the following to your pom.xml:
<dependency>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-core</artifactId>
<version>1.2</version>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>com.pingcap.tikv</groupId>
<artifactId>tikv-client</artifactId>
<version>1.2</version>
<version>1.2.1</version>
</dependency>
</dependencies>
```

If you're using SBT, add the following line to your build file:
```scala
libraryDependencies += "com.pingcap.tispark" % "tispark-core" % "1.2"
libraryDependencies += "com.pingcap.tikv" % "tikv-client" % "1.2"
libraryDependencies += "com.pingcap.tispark" % "tispark-core" % "1.2.1"
libraryDependencies += "com.pingcap.tikv" % "tikv-client" % "1.2.1"
```

For other build tools, you can visit search.maven.org and search with GroupId [![Maven Search](https://img.shields.io/badge/com.pingcap-tikv/tispark-green.svg)](http://search.maven.org/#search%7Cga%7C1%7Cpingcap)(This search will also list all available modules of TiSpark including tikv-client).
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>1.2</version>
<version>1.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/scripts/start-tithriftserver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Enter posix mode for bash
set -o posix

TISPARK_JAR=tispark-core-1.2-jar-with-dependencies.jar
TISPARK_JAR=tispark-core-1.2.1-jar-with-dependencies.jar

if [ -z "${SPARK_HOME}" ]; then
export SPARK_HOME="$(cd "`dirname "$0"`"/..; pwd)"
Expand Down
2 changes: 1 addition & 1 deletion core/scripts/tispark-sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# limitations under the License.
#

TISPARK_JAR=tispark-1.2-jar-with-dependencies.jar
TISPARK_JAR=tispark-1.2.1-jar-with-dependencies.jar

if [ -z "${SPARK_HOME}" ]; then
source "$(dirname "$0")"/find-spark-home
Expand Down
2 changes: 1 addition & 1 deletion core/scripts/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#


TiSparkReleaseVersion=1.2
TiSparkReleaseVersion=1.2.1
TiSparkBuildTS=`date -u '+%Y-%m-%d %I:%M:%S'`
TiSparkGitHash=`git rev-parse HEAD`
TiSparkGitBranch=`git rev-parse --abbrev-ref HEAD`
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>1.2</version>
<version>1.2.1</version>
<packaging>pom</packaging>
<name>TiSpark Project Parent POM</name>
<url>http://github.copm/pingcap/tispark</url>
Expand Down
2 changes: 1 addition & 1 deletion tikv-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.pingcap.tispark</groupId>
<artifactId>tispark-parent</artifactId>
<version>1.2</version>
<version>1.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit f91df02

Please sign in to comment.