You are viewing a plain text version of this content. The canonical link for it is here.
Posted to gitbox@yetus.apache.org by aw...@apache.org on 2020/12/07 03:29:48 UTC

[yetus] branch main updated: YETUS-1034. Add release 0.13.0 (#211)

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

aw pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/yetus.git


The following commit(s) were added to refs/heads/main by this push:
     new f5aa0ec  YETUS-1034. Add release 0.13.0 (#211)
f5aa0ec is described below

commit f5aa0ec02fad4b18e48165bec2bfe4e877c8badc
Author: Allen Wittenauer <aw...@apache.org>
AuthorDate: Sun Dec 6 19:29:41 2020 -0800

    YETUS-1034. Add release 0.13.0 (#211)
    
    - list in releases
    - remove 0.10.0, add 0.13.0 to pom.xml
    - fix the release/update-doc-versions script
---
 asf-site-src/data/htaccess.yml |  4 ++--
 asf-site-src/data/versions.yml |  2 +-
 asf-site-src/pom.xml           | 36 ++++++++++++++++++------------------
 release/update-doc-versions.sh |  2 +-
 4 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/asf-site-src/data/htaccess.yml b/asf-site-src/data/htaccess.yml
index 8f6bd03..98791b9 100644
--- a/asf-site-src/data/htaccess.yml
+++ b/asf-site-src/data/htaccess.yml
@@ -15,6 +15,6 @@
 ---
 redirect:
   /latest.tgz: >
-    https://www.apache.org/dyn/closer.cgi?action=download&filename=yetus/0.12.0/apache-yetus-0.12.0-bin.tar.gz
+    https://www.apache.org/dyn/closer.cgi?action=download&filename=yetus/0.13.0/apache-yetus-0.13.0-bin.tar.gz
   /latest.tgz.asc: >
-    https://downloads.apache.org/yetus/0.12.0/apache-yetus-0.12.0-bin.tar.gz.asc
+    https://downloads.apache.org/yetus/0.13.0/apache-yetus-0.13.0-bin.tar.gz.asc
diff --git a/asf-site-src/data/versions.yml b/asf-site-src/data/versions.yml
index 8ab9d7b..6fa16b1 100644
--- a/asf-site-src/data/versions.yml
+++ b/asf-site-src/data/versions.yml
@@ -16,6 +16,6 @@
 # under the License.
 ---
 releases:
-  - '0.10.0'
   - '0.11.1'
   - '0.12.0'
+  - '0.13.0'
diff --git a/asf-site-src/pom.xml b/asf-site-src/pom.xml
index fde147f..ad66a00 100644
--- a/asf-site-src/pom.xml
+++ b/asf-site-src/pom.xml
@@ -47,69 +47,69 @@
         <executions>
           <!-- AUTOMATED_EDIT_BEGIN -->
           <execution>
-            <id>0.10.0</id>
+            <id>0.11.1</id>
             <phase>pre-site</phase>
             <goals>
               <goal>symlink</goal>
             </goals>
             <configuration>
-              <target>../../target/0.10.0</target>
-              <newLink>${basedir}/source/documentation/0.10.0</newLink>
+              <target>../../target/0.11.1</target>
+              <newLink>${basedir}/source/documentation/0.11.1</newLink>
             </configuration>
           </execution>
           <execution>
-            <id>0.10.0.html.md</id>
+            <id>0.11.1.html.md</id>
             <phase>pre-site</phase>
             <goals>
               <goal>symlink</goal>
             </goals>
             <configuration>
-              <target>../../target/0.10.0.html.md</target>
-              <newLink>${basedir}/source/documentation/0.10.0.html.md</newLink>
+              <target>../../target/0.11.1.html.md</target>
+              <newLink>${basedir}/source/documentation/0.11.1.html.md</newLink>
             </configuration>
           </execution>
           <execution>
-            <id>0.11.1</id>
+            <id>0.12.0</id>
             <phase>pre-site</phase>
             <goals>
               <goal>symlink</goal>
             </goals>
             <configuration>
-              <target>../../target/0.11.1</target>
-              <newLink>${basedir}/source/documentation/0.11.1</newLink>
+              <target>../../target/0.12.0</target>
+              <newLink>${basedir}/source/documentation/0.12.0</newLink>
             </configuration>
           </execution>
           <execution>
-            <id>0.11.1.html.md</id>
+            <id>0.12.0.html.md</id>
             <phase>pre-site</phase>
             <goals>
               <goal>symlink</goal>
             </goals>
             <configuration>
-              <target>../../target/0.11.1.html.md</target>
-              <newLink>${basedir}/source/documentation/0.11.1.html.md</newLink>
+              <target>../../target/0.12.0.html.md</target>
+              <newLink>${basedir}/source/documentation/0.12.0.html.md</newLink>
             </configuration>
           </execution>
           <execution>
-            <id>0.12.0</id>
+            <id>0.13.0</id>
             <phase>pre-site</phase>
             <goals>
               <goal>symlink</goal>
             </goals>
             <configuration>
-              <target>../../target/0.12.0</target>
-              <newLink>${basedir}/source/documentation/0.12.0</newLink>
+              <target>../../target/0.13.0</target>
+              <newLink>${basedir}/source/documentation/0.13.0</newLink>
             </configuration>
           </execution>
           <execution>
-            <id>0.12.0.html.md</id>
+            <id>0.13.0.html.md</id>
             <phase>pre-site</phase>
             <goals>
               <goal>symlink</goal>
             </goals>
             <configuration>
-              <target>../../target/0.12.0.html.md</target>
-              <newLink>${basedir}/source/documentation/0.12.0.html.md</newLink>
+              <target>../../target/0.13.0.html.md</target>
+              <newLink>${basedir}/source/documentation/0.13.0.html.md</newLink>
             </configuration>
           </execution>
           <!-- AUTOMATED_EDIT_END -->
diff --git a/release/update-doc-versions.sh b/release/update-doc-versions.sh
index 4a906a1..ef33fa1 100755
--- a/release/update-doc-versions.sh
+++ b/release/update-doc-versions.sh
@@ -51,7 +51,7 @@ option_parse()
         usage
         exit
       ;;
-      --VERSION=*)
+      --version=*)
         VERSION=${i#*=}
       ;;
     esac