Skip to content

Commit 5e93377

Browse files
committed
Release 0.8.4
1 parent 1d6b65a commit 5e93377

File tree

29 files changed

+36
-36
lines changed

29 files changed

+36
-36
lines changed

bin/install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
INSTALL_DIR=/home/$USER
1414
TEMP_DIR=/tmp
15-
PIO_VERSION=0.8.4-SNAPSHOT
15+
PIO_VERSION=0.8.4
1616
PIO_DIR=$INSTALL_DIR/PredictionIO
1717
PIO_FILE=PredictionIO-$PIO_VERSION.tar.gz
1818
VENDORS_DIR=$PIO_DIR/vendors

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import UnidocKeys._
1818

1919
name := "pio"
2020

21-
version in ThisBuild := "0.8.4-SNAPSHOT"
21+
version in ThisBuild := "0.8.4"
2222

2323
organization in ThisBuild := "io.prediction"
2424

docs/manual/data/versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pio: 0.8.3
1+
pio: 0.8.4
22
spark_download_filename: spark-1.2.0-bin-hadoop2.4
33
elasticsearch_download_filename: elasticsearch-1.3.2
44
hbase_basename: hbase-0.98.6
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "io.prediction.engines.itemrank.examples",
3-
"version": "0.8.4-SNAPSHOT",
3+
"version": "0.8.4",
44
"name": "PredictionIO ItemRank Engine Examples",
55
"engineFactory": "io.prediction.engines.itemrank.ItemRankEngine"
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "io.prediction.engines.itemrec.examples",
3-
"version": "0.8.4-SNAPSHOT",
3+
"version": "0.8.4",
44
"name": "PredictionIO ItemRec Engine Examples",
55
"engineFactory": "io.prediction.engines.itemrec.ItemRecEngine"
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "io.prediction.engines.itemsim.examples",
3-
"version": "0.8.4-SNAPSHOT",
3+
"version": "0.8.4",
44
"name": "PredictionIO ItemSim Engine Examples",
55
"engineFactory": "io.prediction.engines.itemsim.ItemSimEngine"
66
}

examples/experimental/java-local-helloworld/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ name := "example-java-local-helloworld"
77
organization := "org.sample"
88

99
libraryDependencies ++= Seq(
10-
"io.prediction" %% "core" % "0.8.4-SNAPSHOT" % "provided",
10+
"io.prediction" %% "core" % "0.8.4" % "provided",
1111
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided")

examples/experimental/java-local-regression/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ organization := "myorg"
1010
version := "0.0.1-SNAPSHOT"
1111

1212
libraryDependencies ++= Seq(
13-
"io.prediction" %% "core" % "0.8.4-SNAPSHOT" % "provided",
13+
"io.prediction" %% "core" % "0.8.4" % "provided",
1414
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided")

examples/experimental/java-local-tutorial/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ name := "java-local-tutorial"
77

88
organization := "io.prediction"
99

10-
version := "0.8.4-SNAPSHOT"
10+
version := "0.8.4"
1111

1212
libraryDependencies ++= Seq(
13-
"io.prediction" %% "core" % "0.8.4-SNAPSHOT" % "provided",
14-
"io.prediction" %% "engines" % "0.8.4-SNAPSHOT" % "provided",
13+
"io.prediction" %% "core" % "0.8.4" % "provided",
14+
"io.prediction" %% "engines" % "0.8.4" % "provided",
1515
"org.apache.mahout" % "mahout-core" % "0.9",
1616
"org.apache.spark" %% "spark-core" % "1.2.0" % "provided")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "io.prediction.examples.java.recommendations.tutorial1.EngineFactory",
3-
"version": "0.8.4-SNAPSHOT",
3+
"version": "0.8.4",
44
"name": "Simple Recommendations Engine",
55
"engineFactory": "io.prediction.examples.java.recommendations.tutorial1.EngineFactory"
66
}

0 commit comments

Comments
 (0)