Skip to content

Commit

Permalink
[157] Updates for 0.4.0 release (#179)
Browse files Browse the repository at this point in the history
Minor doc updates
  • Loading branch information
jkbradley committed Mar 27, 2017
1 parent 5cfc027 commit e56bbdc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ We welcome open source contributions as well!
- DataFrame-based connected components implementation
- added support for Python 3
- removed support for Spark 1.4 and 1.5
- 0.4.0 release for Spark 2.1
- Fix for checkpointing issue in DataFrame-based connected components implementation (issue 160)
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ val defaultScalaVer = sparkBranch match {
case "1.6" => "2.10.6"
case "2.0" => "2.11.8"
case "2.1" => "2.11.8"
case "2.2" => "2.11.8"
case _ => throw new IllegalArgumentException(s"Unsupported Spark version: $sparkVer.")
}
val scalaVer = sys.props.getOrElse("scala.version", defaultScalaVer)
Expand Down
4 changes: 2 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ We use the `--packages` argument to download the graphframes package and any dep
<div data-lang="scala" markdown="1">

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

</div>

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

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

</div>
Expand Down

0 comments on commit e56bbdc

Please sign in to comment.