From commits-return-12953-archive-asf-public=cust-asf.ponee.io@hudi.apache.org Mon Mar 9 10:53:25 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id F0B0B180181 for ; Mon, 9 Mar 2020 11:53:24 +0100 (CET) Received: (qmail 82465 invoked by uid 500); 9 Mar 2020 10:53:24 -0000 Mailing-List: contact commits-help@hudi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hudi.apache.org Delivered-To: mailing list commits@hudi.apache.org Received: (qmail 82448 invoked by uid 99); 9 Mar 2020 10:53:24 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Mar 2020 10:53:24 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 07CCE8DACA; Mon, 9 Mar 2020 10:53:24 +0000 (UTC) Date: Mon, 09 Mar 2020 10:53:23 +0000 To: "commits@hudi.apache.org" Subject: [incubator-hudi] branch release-0.5.2 updated: [HUDI-676] Address issues towards removing use of WIP Disclaimer (#1386) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158375120386.32597.13967060853648907772@gitbox.apache.org> From: vinoyang@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-hudi X-Git-Refname: refs/heads/release-0.5.2 X-Git-Reftype: branch X-Git-Oldrev: e9f114f3dd8673b8b66b024e62cc1e3e808e7ea9 X-Git-Newrev: 3639241d24178292223996fd591a7d0c6e27a528 X-Git-Rev: 3639241d24178292223996fd591a7d0c6e27a528 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. vinoyang pushed a commit to branch release-0.5.2 in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git The following commit(s) were added to refs/heads/release-0.5.2 by this push: new 3639241 [HUDI-676] Address issues towards removing use of WIP Disclaimer (#1386) 3639241 is described below commit 3639241d24178292223996fd591a7d0c6e27a528 Author: vinoyang AuthorDate: Mon Mar 9 14:14:49 2020 +0800 [HUDI-676] Address issues towards removing use of WIP Disclaimer (#1386) * rename DISCLAIMER-STANDARD TO DISCLAIMER --- DISCLAIMER | 10 ++++++++++ DISCLAIMER-WIP | 26 -------------------------- pom.xml | 2 +- scripts/release/validate_staged_release.sh | 8 ++++---- 4 files changed, 15 insertions(+), 31 deletions(-) diff --git a/DISCLAIMER b/DISCLAIMER new file mode 100644 index 0000000..a4db88b --- /dev/null +++ b/DISCLAIMER @@ -0,0 +1,10 @@ +Apache Hudi (incubating) is an effort undergoing incubation +at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + +Incubation is required of all newly accepted projects until a further review +indicates that the infrastructure, communications, and decision making process +have stabilized in a manner consistent with other successful ASF projects. + +While incubation status is not necessarily a reflection of the +completeness or stability of the code, it does indicate that the +project has yet to be fully endorsed by the ASF. diff --git a/DISCLAIMER-WIP b/DISCLAIMER-WIP deleted file mode 100644 index 62fbb5f..0000000 --- a/DISCLAIMER-WIP +++ /dev/null @@ -1,26 +0,0 @@ -Apache Hudi (incubating) is an effort undergoing incubation -at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. - -Incubation is required of all newly accepted projects until a further review -indicates that the infrastructure, communications, and decision making process -have stabilized in a manner consistent with other successful ASF projects. - -While incubation status is not necessarily a reflection of the -completeness or stability of the code, it does indicate that the -project has yet to be fully endorsed by the ASF. - -Some of the incubating project's releases may not be fully compliant -with ASF policy. For example, releases may have incomplete or -un-reviewed licensing conditions. What follows is a list of known -issues the project is currently aware of (note that this list, by -definition, is likely to be incomplete): - - * The LICENSE and NOTICE files may not be complete and will be fixed with the next release. - -If you are planning to incorporate this work into your -product or project, please be aware that you will need to conduct a -thorough licensing review to determine the overall implications of -including this work. For the current status of this project through the Apache -Incubator visit: - -http://incubator.apache.org/projects/hudi.html diff --git a/pom.xml b/pom.xml index 15ab109..3bd2ad2 100644 --- a/pom.xml +++ b/pom.xml @@ -335,7 +335,7 @@ NOTICE - DISCLAIMER-WIP + DISCLAIMER **/.* **/*.json **/*.log diff --git a/scripts/release/validate_staged_release.sh b/scripts/release/validate_staged_release.sh index 429047b..b90e5cf 100755 --- a/scripts/release/validate_staged_release.sh +++ b/scripts/release/validate_staged_release.sh @@ -107,11 +107,11 @@ fi echo -e "\t\tNo Binary Files in Source Release? - [OK]\n" ### END: Binary Files Check -### Checking for DISCLAIMER-WIP -echo "Checking for DISCLAIMERi-WIP" -disclaimerFile="./DISCLAIMER-WIP" +### Checking for DISCLAIMER +echo "Checking for DISCLAIMER" +disclaimerFile="./DISCLAIMER" if [ ! -f "$disclaimerFile" ]; then - echo "DISCLAIMER-WIP file missing" + echo "DISCLAIMER file missing" exit -1 fi echo -e "\t\tDISCLAIMER file exists ? [OK]\n"