You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by ya...@apache.org on 2015/04/01 20:31:20 UTC

samza git commit: update download page for 0.9.0

Repository: samza
Updated Branches:
  refs/heads/master faf93fff3 -> 95b6afc30


update download page for 0.9.0


Project: http://git-wip-us.apache.org/repos/asf/samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/95b6afc3
Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/95b6afc3
Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/95b6afc3

Branch: refs/heads/master
Commit: 95b6afc305270478bfd830527175b20fc18716ec
Parents: faf93ff
Author: Yan Fang <ya...@gmail.com>
Authored: Wed Apr 1 11:31:05 2015 -0700
Committer: Yan Fang <ya...@gmail.com>
Committed: Wed Apr 1 11:31:05 2015 -0700

----------------------------------------------------------------------
 docs/startup/download/index.md | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/95b6afc3/docs/startup/download/index.md
----------------------------------------------------------------------
diff --git a/docs/startup/download/index.md b/docs/startup/download/index.md
index 47ef0e0..37f948b 100644
--- a/docs/startup/download/index.md
+++ b/docs/startup/download/index.md
@@ -29,7 +29,8 @@ Starting in June of 2015, Samza will begin requiring JDK7 or higher. Please see
 
 ### Source Releases
 
- * [samza-sources-0.8.0-incubating.tgz](http://www.apache.org/dyn/closer.cgi/samza/0.8.0-incubating)
+ * [samza-sources-0.9.0.tgz](http://www.apache.org/dyn/closer.cgi/samza/0.9.0)
+ * [samza-sources-0.8.0-incubating.tgz](https://archive.apache.org/dist/incubator/samza/0.8.0-incubating)
  * [samza-sources-0.7.0-incubating.tgz](https://archive.apache.org/dist/incubator/samza/0.7.0-incubating)
 
 ### Maven
@@ -44,55 +45,55 @@ A Maven-based Samza project can pull in all required dependencies Samza dependen
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-api</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-core_2.10</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
   <scope>runtime</scope>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-serializers_2.10</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-shell</artifactId>
   <classifier>dist</classifier>
   <type>tgz</type>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
   <scope>runtime</scope>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-yarn_2.10</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
   <scope>runtime</scope>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-kv_2.10</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
   <scope>runtime</scope>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-kv-rocksdb_2.10</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
   <scope>runtime</scope>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-kv-inmemory_2.10</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
   <scope>runtime</scope>
 </dependency>
 <dependency>
   <groupId>org.apache.samza</groupId>
   <artifactId>samza-kafka_2.10</artifactId>
-  <version>0.8.0</version>
+  <version>0.9.0</version>
   <scope>runtime</scope>
 </dependency>
 {% endhighlight %}