Skip to content

Commit e56bbdc

Browse files
authored
[157] Updates for 0.4.0 release (graphframes#179)
Minor doc updates
1 parent 5cfc027 commit e56bbdc

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ We welcome open source contributions as well!
3737
- DataFrame-based connected components implementation
3838
- added support for Python 3
3939
- removed support for Spark 1.4 and 1.5
40+
- 0.4.0 release for Spark 2.1
41+
- Fix for checkpointing issue in DataFrame-based connected components implementation (issue 160)

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ val defaultScalaVer = sparkBranch match {
77
case "1.6" => "2.10.6"
88
case "2.0" => "2.11.8"
99
case "2.1" => "2.11.8"
10+
case "2.2" => "2.11.8"
1011
case _ => throw new IllegalArgumentException(s"Unsupported Spark version: $sparkVer.")
1112
}
1213
val scalaVer = sys.props.getOrElse("scala.version", defaultScalaVer)

docs/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ We use the `--packages` argument to download the graphframes package and any dep
3030
<div data-lang="scala" markdown="1">
3131

3232
{% highlight bash %}
33-
$ ./bin/spark-shell --packages graphframes:graphframes:0.3.0-spark2.0-s_2.11
33+
$ ./bin/spark-shell --packages graphframes:graphframes:0.4.0-spark2.0-s_2.11
3434
{% endhighlight %}
3535

3636
</div>
3737

3838
<div data-lang="python" markdown="1">
3939

4040
{% highlight bash %}
41-
$ ./bin/pyspark --packages graphframes:graphframes:0.3.0-spark2.0-s_2.11
41+
$ ./bin/pyspark --packages graphframes:graphframes:0.4.0-spark2.0-s_2.11
4242
{% endhighlight %}
4343

4444
</div>

0 commit comments

Comments
 (0)