Skip to content

Commit

Permalink
Preparing for 1.5 release
Browse files Browse the repository at this point in the history
Changes for 1.5 and final release

Author: Hossein <[email protected]>

Closes #379 from falaki/changes-for-v1.5.0.
  • Loading branch information
falaki committed Sep 5, 2016
1 parent e3f3c1b commit 1ae6492
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# CSV Data Source for Apache Spark
# CSV Data Source for Apache Spark 1.x

__NOTE: This functionality has been inlined in Apache Spark 2.x. This package is in maintenance mode and we only accept critical bug fixes.__

A library for parsing and querying CSV data with Apache Spark, for Spark SQL and DataFrames.

Expand All @@ -16,26 +18,26 @@ You can link against this library in your program at the following coordinates:
```
groupId: com.databricks
artifactId: spark-csv_2.10
version: 1.4.0
version: 1.5.0
```
### Scala 2.11
```
groupId: com.databricks
artifactId: spark-csv_2.11
version: 1.4.0
version: 1.5.0
```

## Using with Spark shell
This package can be added to Spark using the `--packages` command line option. For example, to include it when starting the spark shell:

### Spark compiled with Scala 2.11
```
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.11:1.4.0
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.11:1.5.0
```

### Spark compiled with Scala 2.10
```
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.10:1.4.0
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.10:1.5.0
```

## Features
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "spark-csv"

version := "1.4.0"
version := "1.5.0"

organization := "com.databricks"

Expand Down

0 comments on commit 1ae6492

Please sign in to comment.