You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2019/07/18 20:33:02 UTC

[storm-site] 01/03: Add 1.2.3 to downloads page, remove all old releases from downloads page, clean up releases plugin a bit, delete releases.html as we don't link to it anywhere

This is an automated email from the ASF dual-hosted git repository.

srdo pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/storm-site.git

commit bb9f386abc2f384a6942d6849547a842f1080fad
Author: Stig Rohde Døssing <st...@gmail.com>
AuthorDate: Thu Jul 18 21:52:54 2019 +0200

    Add 1.2.3 to downloads page, remove all old releases from downloads page, clean up releases plugin a bit, delete releases.html as we don't link to it anywhere
---
 _data/releases.yml   |  18 ---
 _plugins/releases.rb |  34 +-----
 downloads.html       | 335 +++------------------------------------------------
 releases.html        |  44 -------
 4 files changed, 22 insertions(+), 409 deletions(-)

diff --git a/_data/releases.yml b/_data/releases.yml
deleted file mode 100644
index aed64fd..0000000
--- a/_data/releases.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-- name: 1.0.0
-- name: 1.0.1
-- name: 1.0.2
-- name: 1.0.3-SNAPSHOT
-  git-tag-or-branch: 1.0.x-branch
-- name: 1.1.0-SNAPSHOT
-  git-tag-or-branch: 1.x-branch
-- name: 2.0.0-SNAPSHOT
-  git-tag-or-branch: master
-- name: 0.10.1
-- name: 0.10.0
-- name: 0.10.0-beta1
-- name: 0.9.6
-- name: 0.9.5
-- name: 0.9.4
-- name: 0.9.3
-- name: 0.9.2-incubating
-- name: 0.9.1-incubating
diff --git a/_plugins/releases.rb b/_plugins/releases.rb
index f28ccd2..8f0d4e0 100644
--- a/_plugins/releases.rb
+++ b/_plugins/releases.rb
@@ -20,46 +20,19 @@ module Releases
       return version_string.split('.').map{|e| e.to_i}
     end
 
-    def release_from_pom()
-      text= `mvn -f ../pom.xml help:evaluate -Dexpression=project.version`
-      return text.split("\n").select{|a| !a.start_with?('[')}[0]
-    end
-
-    def branch_from_git()
-      return `git rev-parse --abbrev-ref HEAD`
-    end
-
     def generate(site)
-      if site.config['storm_release_only']
-        release_name = release_from_pom()
-        puts "release: #{release_name}"
-        git_branch = branch_from_git()
-        puts "branch: #{git_branch}"
-        for page in site.pages do
-          page.data['version'] = release_name;
-          page.data['git-tree-base'] = "http://github.com/apache/storm/tree/#{git_branch}"
-          page.data['git-blob-base'] = "http://github.com/apache/storm/blob/#{git_branch}"
-        end
-        return
-      end
-
       releases = Hash.new
-      if (site.data['releases'])
-        for rel_data in site.data['releases'] do
-          releases[rel_data['name']] = rel_data
-        end
-      end
 
+      # Find the releases/ subdirectories, their names are the current releases
       for page in site.pages do
         release_name = dir_to_releasename(page.dir)
         if (release_name != nil)
-          if !releases.has_key?(release_name)
-            releases[release_name] = {'name' => release_name};
-          end
+          releases[release_name] = {'name' => release_name};
           releases[release_name]['documented'] = true
         end
       end
 
+      # Set some metadata for each release
       releases.each { |release_name, release_data|
           set_if_unset(release_data, 'git-tag-or-branch', "v#{release_data['name']}")
           set_if_unset(release_data, 'git-tree-base', "http://github.com/apache/storm/tree/#{release_data['git-tag-or-branch']}")
@@ -68,6 +41,7 @@ module Releases
           set_if_unset(release_data, 'has-download', !release_name.end_with?('-SNAPSHOT'))
       }
 
+      # Make release metadata available to each page for release specific docs, e.g. links to source
       for page in site.pages do
         release_name = dir_to_releasename(page.dir)
         if (release_name != nil)
diff --git a/downloads.html b/downloads.html
index 8314afd..02c752d 100644
--- a/downloads.html
+++ b/downloads.html
@@ -60,29 +60,29 @@ artifactId: storm-{component}
 version: 2.0.0</pre>				  
 				  
 				  <h3>Current 1.2.x Release</h3>
-				  The current 1.2.x release is 1.2.2. Source and binary distributions can be found below.
+				  The current 1.2.x release is 1.2.3. Source and binary distributions can be found below.
 				  
-				  The list of changes for this release can be found <a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/RELEASE_NOTES.html">here.</a>
+				  The list of changes for this release can be found <a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/RELEASE_NOTES.html">here.</a>
                   
-                  <p><a href="releases/1.2.2/index.html">Documentation</a>
-                  <br/><a href="releases/1.2.2/javadocs/index.html">Javadocs</a></p>
+                  <p><a href="releases/1.2.3/index.html">Documentation</a>
+                  <br/><a href="releases/1.2.3/javadocs/index.html">Javadocs</a></p>
 
 				  <ul>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.2/apache-storm-1.2.2.tar.gz">apache-storm-1.2.2.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2.tar.gz.sha">SHA512</a>] 
+					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.3/apache-storm-1.2.3.tar.gz">apache-storm-1.2.3.tar.gz</a>
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3.tar.gz.asc">PGP</a>]
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3.tar.gz.sha">SHA512</a>] 
 					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.2/apache-storm-1.2.2.zip">apache-storm-1.2.2.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2.zip.sha">SHA512</a>] 
+					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.3/apache-storm-1.2.3.zip">apache-storm-1.2.3.zip</a>
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3.zip.asc">PGP</a>]
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3.zip.sha">SHA512</a>] 
 					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.2/apache-storm-1.2.2-src.tar.gz">apache-storm-1.2.2-src.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2-src.tar.gz.sha">SHA512</a>] 
+					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.3/apache-storm-1.2.3-src.tar.gz">apache-storm-1.2.3-src.tar.gz</a>
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3-src.tar.gz.asc">PGP</a>]
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3-src.tar.gz.sha">SHA512</a>] 
 					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.2/apache-storm-1.2.2-src.zip">apache-storm-1.2.2-src.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2-src.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.2/apache-storm-1.2.2-src.zip.sha">SHA512</a>] 
+					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.3/apache-storm-1.2.3-src.zip">apache-storm-1.2.3-src.zip</a>
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3-src.zip.asc">PGP</a>]
+					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.3/apache-storm-1.2.3-src.zip.sha">SHA512</a>] 
 					  </li>
 				  </ul>
 				  Storm artifacts are hosted in <a href="https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.storm%22">Maven Central</a>. You can add Storm as a dependency with the following coordinates:
@@ -90,308 +90,9 @@ version: 2.0.0</pre>
 				  <pre>
 groupId: <a href="https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.storm%22">org.apache.storm</a>
 artifactId: storm-core
-version: 1.2.2</pre>				  
-				  
-				  
-
-				  <h3>Current 1.1.x Release</h3>
-				  The current 1.1.x release is 1.1.3. Source and binary distributions can be found below.
-				  
-				  The list of changes for this release can be found <a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/RELEASE_NOTES.html">here.</a>
-                  
-                  <p><a href="releases/1.1.3/index.html">Documentation</a>
-                  <br/><a href="releases/1.1.3/javadocs/index.html">Javadocs</a></p>
-
-				  <ul>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.3/apache-storm-1.1.3.tar.gz">apache-storm-1.1.3.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3.tar.gz.sha">SHA512</a>] 
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.3/apache-storm-1.1.3.zip">apache-storm-1.1.3.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3.zip.sha">SHA512</a>] 
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.3/apache-storm-1.1.3-src.tar.gz">apache-storm-1.1.3-src.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3-src.tar.gz.sha">SHA512</a>] 
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.3/apache-storm-1.1.3-src.zip">apache-storm-1.1.3-src.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3-src.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.3/apache-storm-1.1.3-src.zip.sha">SHA512</a>] 
-					  </li>
-				  </ul>
-				  Storm artifacts are hosted in <a href="https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.storm%22">Maven Central</a>. You can add Storm as a dependency with the following coordinates:
-
-				  <pre>
-groupId: <a href="https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.storm%22">org.apache.storm</a>
-artifactId: storm-core
-version: 1.1.3</pre>				  
-
-				  <h3>Previous Releases</h3>
-				  <b>1.2.1</b>
-				  <ul>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.1/apache-storm-1.2.1.tar.gz">apache-storm-1.2.1.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.1/apache-storm-1.2.1.zip">apache-storm-1.2.1.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1.zip.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.tar.gz">apache-storm-1.2.1-src.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.zip">apache-storm-1.2.1-src.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.zip.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.2.1/apache-storm-1.2.1-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-			  
-			  	<b>1.1.2</b>
-				  <ul>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.2/apache-storm-1.1.2.tar.gz">apache-storm-1.1.2.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.2/apache-storm-1.1.2.zip">apache-storm-1.1.2.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2.zip.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.tar.gz">apache-storm-1.1.2-src.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.zip">apache-storm-1.1.2-src.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.zip.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.1.2/apache-storm-1.1.2-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-
-				  
-				  <b>1.1.1</b>
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.tar.gz">apache-storm-1.1.1.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.zip">apache-storm-1.1.1.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.tar.gz">apache-storm-1.1.1-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.zip">apache-storm-1.1.1-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.1/apache-storm-1.1.1-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-				  <b>1.1.0</b>
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.tar.gz">apache-storm-1.1.0.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.zip">apache-storm-1.1.0.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.tar.gz">apache-storm-1.1.0-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.zip">apache-storm-1.1.0-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.1.0/apache-storm-1.1.0-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-              <b>1.0.6</b>
-				  <ul>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.0.6/apache-storm-1.0.6.tar.gz">apache-storm-1.0.6.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.0.6/apache-storm-1.0.6.zip">apache-storm-1.0.6.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6.zip.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.tar.gz">apache-storm-1.0.6-src.tar.gz</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://www.apache.org/dyn/closer.lua/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.zip">apache-storm-1.0.6-src.zip</a>
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.zip.asc">PGP</a>]
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.zip.sha">SHA512</a>] 
-					     [<a href="https://www.apache.org/dist/storm/apache-storm-1.0.6/apache-storm-1.0.6-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-				  <b>1.0.5</b>
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.tar.gz">apache-storm-1.0.5.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.zip">apache-storm-1.0.5.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.tar.gz">apache-storm-1.0.5-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.zip">apache-storm-1.0.5-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.5/apache-storm-1.0.5-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-
-				  <b>1.0.4</b>
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.tar.gz">apache-storm-1.0.4.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.zip">apache-storm-1.0.4.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.tar.gz">apache-storm-1.0.4-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.zip">apache-storm-1.0.4-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-1.0.4/apache-storm-1.0.4-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-
-			  </ul>      
-			  <b>0.10.2</b>
-			  
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.tar.gz">apache-storm-0.10.2.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.zip">apache-storm-0.10.2.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.tar.gz">apache-storm-0.10.2-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.zip">apache-storm-0.10.2-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.10.2/apache-storm-0.10.2-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>			  
-			  
-			              
-                  <b>0.10.1</b>
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz">apache-storm-0.9.7.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip">apache-storm-0.9.7.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz">apache-storm-0.9.7-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip">apache-storm-0.9.7-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
-
-				  <b>0.9.7</b>
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz">apache-storm-0.9.7.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip">apache-storm-0.9.7.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz">apache-storm-0.9.7-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip">apache-storm-0.9.7-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.7/apache-storm-0.9.7-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>                  
-                  <b>0.9.6</b>
-				  <ul>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.tar.gz">apache-storm-0.9.6.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.zip">apache-storm-0.9.6.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.tar.gz">apache-storm-0.9.6-src.tar.gz</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.tar.gz.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.zip">apache-storm-0.9.6-src.zip</a>
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.zip.asc">PGP</a>]
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.zip.sha">SHA512</a>] 
-					     [<a href="https://archive.apache.org/dist/storm/apache-storm-0.9.6/apache-storm-0.9.6-src.zip.md5">MD5</a>]
-					  </li>
-				  </ul>
+version: 1.2.3</pre>				  
 				  
+          <h3>Previous Releases</h3>
 				  Archived releases can be found <a href="https://archive.apache.org/dist/storm/">here</a>
 			</div>
 		</div>
diff --git a/releases.html b/releases.html
deleted file mode 100644
index 6774e8f..0000000
--- a/releases.html
+++ /dev/null
@@ -1,44 +0,0 @@
----
-layout: default
-title: Storm Releases
----
-<div class="content">
-	<div class="container-fluid">
-    	<div class="row">
-        	<div class="col-md-12">
-				{% for r in site.data.releases %}
-                                  <a href="{{r.git-tree-base}}">Apache Storm {{r.name}} on Github</a><br />
-                                  {% if r.documented %}
-                                    <a href="releases/{{r.name}}/index.html">release docs</a>
-                                    <br/><a href="releases/{{r.name}}/javadocs/index.html">Javadocs</a>
-                                  {% endif %}
-                                  {% if r.has-download %}
-				    <ul>
-					  <li><a href="http://www.apache.org/dyn/closer.lua/storm/{{r.base-name}}/{{r.base-name}}.tar.gz">{{r.base-name}}.tar.gz</a>
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}.tar.gz.asc">PGP</a>]
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}.tar.gz.sha">SHA512</a>] 
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="http://www.apache.org/dyn/closer.lua/storm/{{r.base-name}}/{{r.base-name}}.zip">{{r.base-name}}.zip</a>
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}.zip.asc">PGP</a>]
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}.zip.sha">SHA512</a>] 
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}.zip.md5">MD5</a>]
-					  </li>
-					  <li><a href="http://www.apache.org/dyn/closer.lua/storm/{{r.base-name}}/{{r.base-name}}-src.tar.gz">{{r.base-name}}-src.tar.gz</a>
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}-src.tar.gz.asc">PGP</a>]
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}-src.tar.gz.sha">SHA512</a>] 
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}-src.tar.gz.md5">MD5</a>]
-					  </li>
-					  <li><a href="http://www.apache.org/dyn/closer.lua/storm/{{r.base-name}}/{{r.base-name}}-src.zip">{{r.base-name}}-src.zip</a>
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}-src.zip.asc">PGP</a>]
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}-src.zip.sha">SHA512</a>] 
-					     [<a href="http://www.us.apache.org/dist/storm/{{r.base-name}}/{{r.base-name}}-src.zip.md5">MD5</a>]
-					  </li>
-				    </ul>
-                                  {% endif %}
-                                  <hr>
-                                {% endfor %}
-		    </div>
-		</div>
-	</div>
-</div>