Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 74b9802

Browse files
authored
Update README for 0.11.0 (#507)
1 parent 2b4aca0 commit 74b9802

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ You can link against this library in your program at the following coordinates:
2626
```
2727
groupId: com.databricks
2828
artifactId: spark-xml_2.11
29-
version: 0.10.0
29+
version: 0.11.0
3030
```
3131

3232
### Scala 2.12
3333

3434
```
3535
groupId: com.databricks
3636
artifactId: spark-xml_2.12
37-
version: 0.10.0
37+
version: 0.11.0
3838
```
3939

4040
## Using with Spark shell
@@ -43,12 +43,12 @@ This package can be added to Spark using the `--packages` command line option. F
4343

4444
### Spark compiled with Scala 2.11
4545
```
46-
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-xml_2.11:0.10.0
46+
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-xml_2.11:0.11.0
4747
```
4848

4949
### Spark compiled with Scala 2.12
5050
```
51-
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-xml_2.12:0.10.0
51+
$SPARK_HOME/bin/spark-shell --packages com.databricks:spark-xml_2.12:0.11.0
5252
```
5353

5454
## Features
@@ -409,7 +409,7 @@ Automatically infer schema (data types)
409409
```R
410410
library(SparkR)
411411

412-
sparkR.session("local[4]", sparkPackages = c("com.databricks:spark-xml_2.11:0.10.0"))
412+
sparkR.session("local[4]", sparkPackages = c("com.databricks:spark-xml_2.11:0.11.0"))
413413

414414
df <- read.df("books.xml", source = "xml", rowTag = "book")
415415

@@ -421,7 +421,7 @@ You can manually specify schema:
421421
```R
422422
library(SparkR)
423423

424-
sparkR.session("local[4]", sparkPackages = c("com.databricks:spark-xml_2.11:0.10.0"))
424+
sparkR.session("local[4]", sparkPackages = c("com.databricks:spark-xml_2.11:0.11.0"))
425425
customSchema <- structType(
426426
structField("_id", "string"),
427427
structField("author", "string"),

0 commit comments

Comments
 (0)