Skip to content

Commit

Permalink
Begin 0.9.1-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
dszeto committed Mar 4, 2015
1 parent c964402 commit fb27d4d
Show file tree
Hide file tree
Showing 32 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# License: http://www.apache.org/licenses/LICENSE-2.0

OS=`uname`
PIO_VERSION=0.9.0
PIO_VERSION=0.9.1-SNAPSHOT
SPARK_VERSION=1.2.0
ELASTICSEARCH_VERSION=1.4.2
HBASE_VERSION=0.98.6
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.9.0"
version in ThisBuild := "0.9.1-SNAPSHOT"

organization in ThisBuild := "io.prediction"

Expand Down
2 changes: 1 addition & 1 deletion docs/manual/data/versions.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pio: 0.9.0
pio: 0.9.1-SNAPSHOT
spark_download_filename: spark-1.2.0-bin-hadoop2.4
elasticsearch_download_filename: elasticsearch-1.4.4
hbase_basename: hbase-0.98.6
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/source/community/projects.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Community-powered SDKs are [separately listed](/sdk/).

URL: https://github.com/PredictionIO/PredictionIO-Vagrant

Bring Up PredictionIO 0.9.0 VM with Vagrant.
Bring Up PredictionIO 0.9.1-SNAPSHOT VM with Vagrant.

- Core Author: Raphael Mäder

Expand Down
2 changes: 1 addition & 1 deletion docs/manual/source/install/install-vagrant.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ When it finishes successfully, you should see somthing like the following:
```
==> default: Installation done!
==> default: --------------------------------------------------------------------------------
==> default: Installation of PredictionIO 0.9.0 complete!
==> default: Installation of PredictionIO 0.9.1-SNAPSHOT complete!
==> default: IMPORTANT: You still have to start PredictionIO and dependencies manually:
==> default: Run: 'pio-start-all'
==> default: Check the status with: 'pio status'
Expand Down
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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.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.9.0"
version := "0.9.1-SNAPSHOT"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.9.0" % "provided",
"io.prediction" %% "engines" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.mahout" % "mahout-core" % "0.9",
"org.apache.spark" %% "spark-core" % "1.2.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.9.0",
"version": "0.9.1-SNAPSHOT",
"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.9.0",
"version": "0.9.1-SNAPSHOT",
"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.9.0",
"version": "0.9.1-SNAPSHOT",
"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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided")
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "examples-friendrecommendation"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.9.0" % "provided",
"io.prediction" %% "data" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"io.prediction" %% "data" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.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.9.0" % "provided",
"io.prediction" %% "data" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"io.prediction" %% "data" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.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.9.0" % "provided",
"io.prediction" %% "engines" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.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.9.0" % "provided",
"io.prediction" %% "engines" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.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-custom-preparator"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-graphx" % "1.2.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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.0"
exclude("org.apache.spark", "spark-core_2.10")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-similarproduct-dimsum"
organization := "io.prediction"

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

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.0" % "provided")
2 changes: 1 addition & 1 deletion examples/experimental/scala-parallel-trim-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-vanilla"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.0" % "provided")
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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"commons-io" % "commons-io" % "2.4",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.0" % "provided",
Expand Down
2 changes: 1 addition & 1 deletion examples/experimental/scala-refactor-test/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ organization := "io.prediction"

libraryDependencies ++= Seq(
//"io.prediction" %% "core" % "0.8.6" % "provided",
"io.prediction" %% "core" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.0" % "provided")
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.9.0" % "provided",
"io.prediction" %% "engines" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"io.prediction" %% "engines" % "0.9.1-SNAPSHOT" % "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,7 +7,7 @@ name := "template-scala-parallel-classification"
organization := "io.prediction"

libraryDependencies ++= Seq(
"io.prediction" %% "core" % "0.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"commons-io" % "commons-io" % "2.4",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.0" % "provided",
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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.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.9.0" % "provided",
"io.prediction" %% "core" % "0.9.1-SNAPSHOT" % "provided",
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided",
"org.apache.spark" %% "spark-mllib" % "1.2.0" % "provided")
2 changes: 1 addition & 1 deletion examples/scala-parallel-similarproduct-multi/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ name := "template-scala-parallel-similarproduct-multi"
organization := "io.prediction"

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

0 comments on commit fb27d4d

Please sign in to comment.