Skip to content

Commit

Permalink
0.8.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dszeto committed Dec 13, 2014
1 parent 2a125cd commit 580cc3e
Show file tree
Hide file tree
Showing 26 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion bin/install-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

INSTALL_DIR=/home/$USER
TEMP_DIR=/tmp
PIO_VERSION=0.8.3-SNAPSHOT
PIO_VERSION=0.8.3
PIO_DIR=$INSTALL_DIR/PredictionIO
PIO_FILE=PredictionIO-$PIO_VERSION.tar.gz
VENDORS_DIR=$PIO_DIR/vendors
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import UnidocKeys._

name := "pio"

version in ThisBuild := "0.8.3-SNAPSHOT"
version in ThisBuild := "0.8.3"

organization in ThisBuild := "io.prediction"

Expand Down
2 changes: 1 addition & 1 deletion engines/src/main/scala/itemrank/examples/engine.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "io.prediction.engines.itemrank.examples",
"version": "0.8.3-SNAPSHOT",
"version": "0.8.3",
"name": "PredictionIO ItemRank Engine Examples",
"engineFactory": "io.prediction.engines.itemrank.ItemRankEngine"
}
2 changes: 1 addition & 1 deletion engines/src/main/scala/itemrec/examples/engine.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "io.prediction.engines.itemrec.examples",
"version": "0.8.3-SNAPSHOT",
"version": "0.8.3",
"name": "PredictionIO ItemRec Engine Examples",
"engineFactory": "io.prediction.engines.itemrec.ItemRecEngine"
}
2 changes: 1 addition & 1 deletion engines/src/main/scala/itemsim/examples/engine.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "io.prediction.engines.itemsim.examples",
"version": "0.8.3-SNAPSHOT",
"version": "0.8.3",
"name": "PredictionIO ItemSim Engine Examples",
"engineFactory": "io.prediction.engines.itemsim.ItemSimEngine"
}
2 changes: 1 addition & 1 deletion examples/experimental/java-local-helloworld/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ name := "example-java-local-helloworld"
organization := "org.sample"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided")
2 changes: 1 addition & 1 deletion examples/experimental/java-local-regression/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ organization := "myorg"
version := "0.0.1-SNAPSHOT"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided")
6 changes: 3 additions & 3 deletions examples/experimental/java-local-tutorial/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name := "java-local-tutorial"

organization := "io.prediction"

version := "0.8.3-SNAPSHOT"
version := "0.8.3"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"io.prediction" %% "engines" % "0.8.3" % "provided",
"org.apache.mahout" % "mahout-core" % "0.9",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided")
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "io.prediction.examples.java.recommendations.tutorial1.EngineFactory",
"version": "0.8.3-SNAPSHOT",
"version": "0.8.3",
"name": "Simple Recommendations Engine",
"engineFactory": "io.prediction.examples.java.recommendations.tutorial1.EngineFactory"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "io.prediction.examples.java.recommendations.tutorial4.EngineFactory",
"version": "0.8.3-SNAPSHOT",
"version": "0.8.3",
"name": "FeatureBased Recommendations Engine",
"engineFactory": "io.prediction.examples.java.recommendations.tutorial4.EngineFactory"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "io.prediction.examples.java.recommendations.tutorial4.SingleEngineFactory",
"version": "0.8.3-SNAPSHOT",
"version": "0.8.3",
"name": "FeatureBased Recommendations Engine",
"engineFactory": "io.prediction.examples.java.recommendations.tutorial4.SingleEngineFactory"
}
2 changes: 1 addition & 1 deletion examples/experimental/java-parallel-helloworld/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ name := "example-java-parallel-helloworld"
organization := "org.sample"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided")
4 changes: 2 additions & 2 deletions examples/experimental/scala-local-helloworld/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "example-scala-local-helloworld"
organization := "org.sample"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "data" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"io.prediction" %% "data" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided")
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ organization := "myorg"
version := "0.0.1-SNAPSHOT"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"io.prediction" %% "engines" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided")
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ organization := "myorg"
version := "0.0.1-SNAPSHOT"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"io.prediction" %% "engines" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided")
2 changes: 1 addition & 1 deletion examples/experimental/scala-local-regression/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name := "example-scala-local-regression"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.json4s" %% "json4s-native" % "3.2.10",
"org.scalanlp" %% "nak" % "1.3")
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-recommendation"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided")
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-recommendation"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided")
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name := "template-scala-parallel-recommendation"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided")

Expand Down
2 changes: 1 addition & 1 deletion examples/experimental/scala-parallel-regression/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ organization := "myorg"
version := "0.0.1-SNAPSHOT"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0"
exclude("org.apache.spark", "spark-core_2.10")
Expand Down
2 changes: 1 addition & 1 deletion examples/experimental/scala-recommendations/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name := "example-scala-recommendations"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"commons-io" % "commons-io" % "2.4",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided",
Expand Down
4 changes: 2 additions & 2 deletions examples/experimental/scala-stock/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ name := "example-scala-stock"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"io.prediction" %% "engines" % "0.8.3" % "provided",
"com.github.scopt" %% "scopt" % "3.2.0",
"commons-io" % "commons-io" % "2.4",
"org.apache.commons" % "commons-math3" % "3.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-recommendation-custom-preparator"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided")
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-recommendation"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided")
2 changes: 1 addition & 1 deletion templates/scala-parallel-classification/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name := "template-scala-parallel-classification"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"commons-io" % "commons-io" % "2.4",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided",
Expand Down
2 changes: 1 addition & 1 deletion templates/scala-parallel-recommendation/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-recommendation"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.8.3-SNAPSHOT" % "provided",
"io.prediction" %% "core" % "0.8.3" % "provided",
"org.apache.spark" %% "spark-core" % "1.1.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.1.0" % "provided")

0 comments on commit 580cc3e

Please sign in to comment.