Repository: incubator-samza Updated Branches: refs/heads/master cba2231dd -> 8c546a5ad
SAMZA-493; link to 0.8.0 release on download page Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/8c546a5a Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/8c546a5a Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/8c546a5a Branch: refs/heads/master Commit: 8c546a5ad776f42fa8e00ffc090db276437d518c Parents: cba2231 Author: Chris Riccomini <cricc...@criccomi-mn.linkedin.biz> Authored: Mon Dec 8 14:18:18 2014 -0800 Committer: Chris Riccomini <cricc...@criccomi-mn.linkedin.biz> Committed: Mon Dec 8 14:18:18 2014 -0800 ---------------------------------------------------------------------- docs/startup/download/index.md | 35 +++++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/8c546a5a/docs/startup/download/index.md ---------------------------------------------------------------------- diff --git a/docs/startup/download/index.md b/docs/startup/download/index.md index e08202d..7c81b14 100644 --- a/docs/startup/download/index.md +++ b/docs/startup/download/index.md @@ -25,7 +25,8 @@ If you just want to play around with Samza for the first time, go to [Hello Samz ### Source Releases - * [samza-sources-0.7.0-incubating.tgz](http://www.apache.org/dyn/closer.cgi/incubator/samza/0.7.0-incubating) + * [samza-sources-0.8.0-incubating.tgz](http://www.apache.org/dyn/closer.cgi/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 @@ -39,43 +40,61 @@ 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.7.0</version> + <version>0.8.0</version> </dependency> <dependency> <groupId>org.apache.samza</groupId> <artifactId>samza-core_2.10</artifactId> - <version>0.7.0</version> + <version>0.8.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.samza</groupId> <artifactId>samza-serializers_2.10</artifactId> - <version>0.7.0</version> + <version>0.8.0</version> </dependency> <dependency> <groupId>org.apache.samza</groupId> <artifactId>samza-shell</artifactId> <classifier>dist</classifier> <type>tgz</type> - <version>0.7.0</version> + <version>0.8.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.samza</groupId> <artifactId>samza-yarn_2.10</artifactId> - <version>0.7.0</version> + <version>0.8.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.samza</groupId> <artifactId>samza-kv_2.10</artifactId> - <version>0.7.0</version> + <version>0.8.0</version> + <scope>runtime</scope> +</dependency> +<dependency> + <groupId>org.apache.samza</groupId> + <artifactId>samza-kv-leveldb_2.10</artifactId> + <version>0.8.0</version> + <scope>runtime</scope> +</dependency> +<dependency> + <groupId>org.apache.samza</groupId> + <artifactId>samza-kv-rocksdb_2.10</artifactId> + <version>0.8.0</version> + <scope>runtime</scope> +</dependency> +<dependency> + <groupId>org.apache.samza</groupId> + <artifactId>samza-kv-inmemory_2.10</artifactId> + <version>0.8.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.samza</groupId> <artifactId>samza-kafka_2.10</artifactId> - <version>0.7.0</version> + <version>0.8.0</version> <scope>runtime</scope> </dependency> {% endhighlight %}