Skip to content

Commit

Permalink
SAMZA-714: Doc publish for 0.9.1 release in master
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpan47 committed Jul 10, 2015
1 parent 94e37ec commit 0a10575
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ This command will re-build the Javadocs and website, checkout https://svn.apache

## Release-new-version Website Checklist

Assume we want to release x.x.x , need to work on two branches: x.x.x and master.
Assume we want to release x.x.x and the next release is y.y.y in master, need to work on two branches: x.x.x and master.

Following can be done when updating the gradle.properties file

Expand All @@ -80,7 +80,7 @@ Following can be done when updating the gradle.properties file

* update the download page to use x.x.x release

* update the version number in "tar -xvf ./target/hello-samza-x.x.x-dist.tar.gz -C deploy/samza" in docs/startup/hello-samza/versioned/index.md
* update the version number in "tar -xvf ./target/hello-samza-y.y.y-dist.tar.gz -C deploy/samza" in docs/startup/hello-samza/versioned/index.md

After apache mirrors pick up the new release,

Expand Down
19 changes: 10 additions & 9 deletions docs/startup/download/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Starting in June of 2015, Samza will begin requiring JDK7 or higher. Please see

### Source Releases

* [samza-sources-0.9.1.tgz](http://www.apache.org/dyn/closer.cgi/samza/0.9.1)
* [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)
Expand All @@ -45,50 +46,50 @@ 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.9.0</version>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-core_2.10</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-shell</artifactId>
<classifier>dist</classifier>
<type>tgz</type>
<version>0.9.0</version>
<version>0.9.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-yarn_2.10</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-kv_2.10</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-kv-rocksdb_2.10</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-kv-inmemory_2.10</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-kafka_2.10</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
<scope>runtime</scope>
</dependency>
{% endhighlight %}
Expand All @@ -99,7 +100,7 @@ Samza versions less than 0.9 should include this additional dependency.
<dependency>
<groupId>org.apache.samza</groupId>
<artifactId>samza-serializers_2.10</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
</dependency>
{% endhighlight %}

Expand Down

0 comments on commit 0a10575

Please sign in to comment.