Skip to content

Commit e23c628

Browse files
committed
Release preparation.
Signed-off-by: Simeon H.K. Fitch <[email protected]>
1 parent 8570d4e commit e23c628

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

docs/build.sbt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ ScalaUnidoc / siteSubdirName := "latest/api"
1919
addMappingsToSiteDir(ScalaUnidoc / packageDoc / mappings, ScalaUnidoc / siteSubdirName)
2020

2121
Paradox / paradoxProperties ++= Map(
22-
"github.base_url" -> "https://github.com/locationtech/rasterframes"
23-
//"scaladoc.org.apache.spark.sql.gt" -> "http://rasterframes.io/latest",
22+
"github.base_url" -> "https://github.com/locationtech/rasterframes",
23+
"version" -> version.value,
24+
"scaladoc.org.apache.spark.sql.gt" -> "http://rasterframes.io/latest"
2425
//"scaladoc.geotrellis.base_url" -> "https://geotrellis.github.io/scaladocs/latest",
2526
// "snip.pyexamples.base_dir" -> (baseDirectory.value + "/../pyrasterframes/python/test/examples")
2627
)
2728
Paradox / paradoxTheme := Some(builtinParadoxTheme("generic"))
28-
Paradox / paradoxGroups := Map("Language" -> Seq("Scala", "Python"))
29+
// Paradox / paradoxGroups := Map("Language" -> Seq("Scala", "Python"))
2930
Paradox / paradoxTheme / sourceDirectory := sourceDirectory.value / "main" / "paradox" / "_template"
3031

3132
Compile / doc / scalacOptions++= Seq( "-J-Xmx6G", "-no-link-warnings")

docs/src/main/tut/getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ Additional instructions can be found [here](https://github.com/locationtech/rast
1717
To use RasterFrames, add the following library dependencies:
1818

1919
@@dependency[sbt,Maven,Gradle] {
20-
group="io.astraea"
20+
group="org.locationtech.rasterframes"
2121
artifact="rasterframes_2.11"
22-
version="x.y.z"
22+
version="$version$"
2323
}
2424

2525
@@dependency[sbt,Maven,Gradle] {
26-
group="io.astraea"
26+
group="org.locationtech.rasterframes"
2727
artifact="rasterframes-datasource_2.11"
28-
version="x.y.z"
28+
version="$version$"
2929
}
3030

3131
Optional:
3232

3333
@@dependency[sbt,Maven,Gradle] {
34-
group="io.astraea"
34+
group="org.locationtech.rasterframes"
3535
artifact="rasterframes-experimental_2.11"
36-
version="x.y.z"
36+
version="$version$"
3737
}
3838

3939
It assumes that SparkSQL 2.2.x is available in the runtime classpath. Here's how to add it explicitly:

project/ProjectPlugin.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ object ProjectPlugin extends AutoPlugin {
1818
import autoImport._
1919

2020
override def projectSettings = Seq(
21-
//organization := "org.locationtech.rasterframes",
22-
organization := "io.astraea",
21+
organization := "org.locationtech.rasterframes",
22+
//organization := "io.astraea",
2323
organizationName := "LocationTech RasterFrames",
2424
startYear := Some(2017),
2525
homepage := Some(url("http://rasterframes.io")),

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
2626

2727
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.1")
2828

29-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
29+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
3030

3131
addSbtPlugin("org.spark-packages" % "sbt-spark-package" % "0.2.7-astraea.1")
3232

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.7.0-SNAPSHOT"
1+
version in ThisBuild := "0.7.0"

0 commit comments

Comments
 (0)