Skip to content

Commit 11e5099

Browse files
committed
v0.6.0
1 parent c3c44ba commit 11e5099

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ https://isarn.github.io/isarn-sketches-spark/latest/api/#org.isarnproject.sketch
88

99
``` scala
1010
// Note that the version of spark is part of the release name.
11-
// This example is for spark 3.0:
12-
libraryDependencies += "org.isarnproject" %% "isarn-sketches-spark" % "0.5.2-sp3.0"
11+
// This example is for spark 3.2:
12+
libraryDependencies += "org.isarnproject" %% "isarn-sketches-spark" % "0.6.0-sp3.2"
1313

1414
// This package builds against some `% Provided` Apache Spark dependencies:
1515
libraryDependencies += "org.apache.spark" %% "spark-core" % sparkVersion
@@ -29,15 +29,16 @@ Some context on these changes is available in this Spark Summmit
2929

3030
Versions of Spark and Scala that are currently supported:
3131

32-
- spark 3.0, scala 2.12
32+
- v0.6.0: spark 3.2, scala 2.12
33+
- v0.5.2: spark 3.0, scala 2.12
3334

3435
If you are interested in a spark/scala build that is not listed above, please contact me and/or file an issue!
3536

3637
## How to use from the Spark CLI
3738
Several Spark CLI tools accept the `--packages` argument, including spark-shell and pyspark.
3839
Following is an example using `spark-shell`:
3940
```bash
40-
$ spark-shell --packages "org.isarnproject:isarn-sketches-spark_2.12:0.5.2-sp3.0"
41+
$ spark-shell --packages "org.isarnproject:isarn-sketches-spark_2.12:0.6.0-sp3.2"
4142
```
4243
Note that you need to explicitly include the scala version as part of the package name.
4344

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ name := "isarn-sketches-spark"
1212

1313
organization := "org.isarnproject"
1414

15-
val packageVersion = "0.5.3-SNAPSHOT"
15+
val packageVersion = "0.6.0"
1616

17-
val sparkVersion = "3.0.1"
17+
val sparkVersion = "3.2.0"
1818

1919
val sparkSuffix = s"""sp${sparkVersion.split('.').take(2).mkString(".")}"""
2020

0 commit comments

Comments
 (0)