You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2019/10/09 23:57:06 UTC

[zeppelin] branch gh-pages updated: [WEBSITE] Make /docs/latest point 0.8.2

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

moon pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/gh-pages by this push:
     new 5dd6adc  [WEBSITE] Make /docs/latest point 0.8.2
5dd6adc is described below

commit 5dd6adc48d1cc7be16999ad50720a4b142dad4bc
Author: Lee moon soo <le...@gmail.com>
AuthorDate: Tue Oct 1 12:09:40 2019 -0700

    [WEBSITE] Make /docs/latest point 0.8.2
    
    ### What is this PR for?
    Update .htaccess to make `/docs/latest` point `0.8.2` version doc
    
    ### What type of PR is it?
    Improvement
    
    ### Questions:
    * Does the licenses files need update? no
    * Is there breaking changes for older versions? no
    * Does this needs documentation? no
    
    Author: Lee moon soo <le...@gmail.com>
    
    Closes #3470 from Leemoonsoo/gh-pages-0.8.2-htaccess and squashes the following commits:
    
    12ce72a20 [Lee moon soo] make /docs/latest point 0.8.2
---
 .htaccess | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.htaccess b/.htaccess
index 111a73b..907ae6d 100644
--- a/.htaccess
+++ b/.htaccess
@@ -7,7 +7,7 @@ RewriteRule ^/?docs/0.6.0-(?!SNAPSHOT).*/(.*) /docs/0.6.0/$2  [R=301,L,NE]
 RewriteRule ^/?docs/(0.5.[056])(?!-incubating).*/(.*) /docs/$1-incubating/$3  [R=301,L,NE]
 
 # rewrite docs/latest to latest stable release
-RewriteRule ^/?docs/latest/(.*) /docs/0.8.1/$1  [PT]
+RewriteRule ^/?docs/latest/(.*) /docs/0.8.2/$1  [PT]
 
 # rewrite docs/snapshot to latest snapshot version
 RewriteRule ^/?docs/snapshot/(.*) /docs/0.9.0-SNAPSHOT/$1  [PT]