Skip to content

Commit

Permalink
Bump to v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPowers committed Aug 28, 2017
1 parent cc0b341 commit f872f65
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spShortDescription := "Open source Spark transformations and functions"

spDescription := "When the Spark source code doesn't provide functionality, turn to this library"

version := "0.9.0"
version := "0.10.0"

scalaVersion := "2.11.8"
sparkVersion := "2.2.0"
Expand All @@ -28,6 +28,10 @@ spDependencies += "MrPowers/spark-fast-tests:0.4.0"
libraryDependencies += "org.apache.commons" % "commons-text" % "1.1"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.6" % "provided"

artifactName := { (sv: ScalaVersion, module: ModuleID, artifact: Artifact) =>
artifact.name + "_" + sv.binary + "-" + sparkVersion.value + "_" + module.revision + "." + artifact.extension
}

// All Spark Packages need a license
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))

Expand Down

0 comments on commit f872f65

Please sign in to comment.