Skip to content

Commit 1ae6492

Browse files
committed
Preparing for 1.5 release
Changes for 1.5 and final release Author: Hossein <[email protected]> Closes #379 from falaki/changes-for-v1.5.0.
1 parent e3f3c1b commit 1ae6492

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# CSV Data Source for Apache Spark
1+
# CSV Data Source for Apache Spark 1.x
2+
3+
__NOTE: This functionality has been inlined in Apache Spark 2.x. This package is in maintenance mode and we only accept critical bug fixes.__
24

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

@@ -16,26 +18,26 @@ You can link against this library in your program at the following coordinates:
1618
```
1719
groupId: com.databricks
1820
artifactId: spark-csv_2.10
19-
version: 1.4.0
21+
version: 1.5.0
2022
```
2123
### Scala 2.11
2224
```
2325
groupId: com.databricks
2426
artifactId: spark-csv_2.11
25-
version: 1.4.0
27+
version: 1.5.0
2628
```
2729

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

3133
### Spark compiled with Scala 2.11
3234
```
33-
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.11:1.4.0
35+
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.11:1.5.0
3436
```
3537

3638
### Spark compiled with Scala 2.10
3739
```
38-
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.10:1.4.0
40+
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.10:1.5.0
3941
```
4042

4143
## Features

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "spark-csv"
22

3-
version := "1.4.0"
3+
version := "1.5.0"
44

55
organization := "com.databricks"
66

0 commit comments

Comments
 (0)