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

szetszwo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ratis.git


The following commit(s) were added to refs/heads/master by this push:
     new 50bbd63  RATIS-1318. Remove incubating from make_rc.sh and 
ratis-assembly. (#426)
50bbd63 is described below

commit 50bbd63ec079542086e3af2fac9d7a8fb84b20a7
Author: runzhiwang <[email protected]>
AuthorDate: Sat Feb 20 17:10:34 2021 +0800

    RATIS-1318. Remove incubating from make_rc.sh and ratis-assembly. (#426)
---
 .asf.yaml                                   |  2 +-
 dev-support/make_rc.sh                      | 10 +++++-----
 ratis-assembly/pom.xml                      |  2 +-
 ratis-assembly/src/main/resources/README.md |  2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index cf664e2..8ab98a2 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -14,7 +14,7 @@
 # limitations under the License.
 github:
   description: "Open source Java implementation for Raft consensus protocol."
-  homepage: http://ratis.incubator.apache.org/
+  homepage: http://ratis.apache.org/
   labels:
     - raft
     - consensus-protocol
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index 012b51b..55bb85b 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -79,7 +79,7 @@ echo "Repo dir: ${repodir}"
 
 SVNDISTDIR=${SVNDISTDIR:-$projectdir/../svndistratis}
 if [ ! -d "$SVNDISTDIR" ]; then
-  svn co https://dist.apache.org/repos/dist/dev/incubator/ratis "$SVNDISTDIR"
+  svn co https://dist.apache.org/repos/dist/dev/ratis "$SVNDISTDIR"
 fi
 
 
@@ -116,8 +116,8 @@ prepare-bin() {
   rm -rf "$WORKINGDIR"
   mkdir -p "$WORKINGDIR"
   cd "$WORKINGDIR"
-  tar zvxf 
"$projectdir/ratis-assembly/target/apache-ratis-incubating-${RATISVERSION}-src.tar.gz"
-  cd "apache-ratis-incubating-${RATISVERSION}"
+  tar zvxf 
"$projectdir/ratis-assembly/target/apache-ratis-${RATISVERSION}-src.tar.gz"
+  cd "apache-ratis-${RATISVERSION}"
 
   mvnFun clean install assembly:single -DskipTests=true  -Prelease 
-Papache-release -Dgpg.keyname="${CODESIGNINGKEY}"
 }
@@ -127,8 +127,8 @@ assembly() {
   RCDIR="$SVNDISTDIR/${RATISVERSION}/${RC#-}"
   mkdir -p "$RCDIR"
   cd "$RCDIR"
-  cp 
"$WORKINGDIR/apache-ratis-incubating-${RATISVERSION}/ratis-assembly/target/apache-ratis-incubating-${RATISVERSION}-bin.tar.gz"
 "apache-ratis-incubating-${RATISVERSION}-bin.tar.gz"
-  cp 
"$projectdir/ratis-assembly/target/apache-ratis-incubating-${RATISVERSION}-src.tar.gz"
 "apache-ratis-incubating-${RATISVERSION}-src.tar.gz"
+  cp 
"$WORKINGDIR/apache-ratis-${RATISVERSION}/ratis-assembly/target/apache-ratis-${RATISVERSION}-bin.tar.gz"
 "apache-ratis-${RATISVERSION}-bin.tar.gz"
+  cp 
"$projectdir/ratis-assembly/target/apache-ratis-${RATISVERSION}-src.tar.gz" 
"apache-ratis-${RATISVERSION}-src.tar.gz"
   for i in *.tar.gz; do gpg  -u "${CODESIGNINGKEY}" --armor --output 
"${i}.asc" --detach-sig "${i}"; done
   for i in *.tar.gz; do gpg --print-md SHA512 "${i}" > "${i}.sha512"; done
   for i in *.tar.gz; do gpg --print-mds "${i}" > "${i}.mds"; done
diff --git a/ratis-assembly/pom.xml b/ratis-assembly/pom.xml
index 06e9e80..e274358 100644
--- a/ratis-assembly/pom.xml
+++ b/ratis-assembly/pom.xml
@@ -128,7 +128,7 @@
         <artifactId>maven-assembly-plugin</artifactId>
         <configuration>
           <!--Else will use ratis-assembly as final name.-->
-          <finalName>apache-ratis-incubating-${project.version}</finalName>
+          <finalName>apache-ratis-${project.version}</finalName>
           <skipAssembly>false</skipAssembly>
           <appendAssemblyId>true</appendAssemblyId>
           <tarLongFileMode>gnu</tarLongFileMode>
diff --git a/ratis-assembly/src/main/resources/README.md 
b/ratis-assembly/src/main/resources/README.md
index c762f03..ffce6ac 100644
--- a/ratis-assembly/src/main/resources/README.md
+++ b/ratis-assembly/src/main/resources/README.md
@@ -27,4 +27,4 @@ implementation of the key raft elements: raftlog and state 
machine. The are for
 
 For more deails see:
 
-https://ratis.incubator.apache.org
+https://ratis.apache.org

Reply via email to