Skip to content

Commit 472c20d

Browse files
committed
Changes for 1.3 release
Updates build and readme files only. Author: Hossein <[email protected]> Closes #191 from falaki/v1.3.0.
1 parent 786847c commit 472c20d

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

Diff for: README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,26 @@ You can link against this library in your program at the following coordiates:
1616
```
1717
groupId: com.databricks
1818
artifactId: spark-csv_2.10
19-
version: 1.2.0
19+
version: 1.3.0
2020
```
2121
### Scala 2.11
2222
```
2323
groupId: com.databricks
2424
artifactId: spark-csv_2.11
25-
version: 1.2.0
25+
version: 1.3.0
2626
```
2727

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

3231
### Spark compiled with Scala 2.11
3332
```
34-
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.11:1.2.0
33+
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.11:1.3.0
3534
```
3635

3736
### Spark compiled with Scala 2.10
3837
```
39-
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.10:1.2.0
38+
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-csv_2.10:1.3.0
4039
```
4140

4241
## Features
@@ -323,7 +322,7 @@ Automatically infer schema (data types), otherwise everything is assumed string:
323322
```R
324323
library(SparkR)
325324

326-
Sys.setenv('SPARKR_SUBMIT_ARGS'='"--packages" "com.databricks:spark-csv_2.10:1.2.0" "sparkr-shell"')
325+
Sys.setenv('SPARKR_SUBMIT_ARGS'='"--packages" "com.databricks:spark-csv_2.10:1.3.0" "sparkr-shell"')
327326
sqlContext <- sparkRSQL.init(sc)
328327

329328
df <- read.df(sqlContext, "cars.csv", source = "com.databricks.spark.csv", schema = customSchema, inferSchema = "true")
@@ -335,7 +334,7 @@ You can manually specify schema:
335334
```R
336335
library(SparkR)
337336

338-
Sys.setenv('SPARKR_SUBMIT_ARGS'='"--packages" "com.databricks:spark-csv_2.10:1.2.0" "sparkr-shell"')
337+
Sys.setenv('SPARKR_SUBMIT_ARGS'='"--packages" "com.databricks:spark-csv_2.10:1.3.0" "sparkr-shell"')
339338
sqlContext <- sparkRSQL.init(sc)
340339
customSchema <- structType(
341340
structField("year", "integer"),

Diff for: build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "spark-csv"
22

3-
version := "1.3.0-SNAPSHOT"
3+
version := "1.3.0"
44

55
organization := "com.databricks"
66

0 commit comments

Comments
 (0)