This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 4b1f2b733 [release] Added incubating name in release file (#845)
4b1f2b733 is described below
commit 4b1f2b733868ee6a6799705816f906ee7a117cad
Author: Kerwin <[email protected]>
AuthorDate: Fri Apr 7 10:04:04 2023 +0800
[release] Added incubating name in release file (#845)
---
pom.xml | 5 +++--
tools/releasing/create_source_release.sh | 6 +++---
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/pom.xml b/pom.xml
index cdf50fb99..abfd6998d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,7 +34,7 @@ under the License.
<version>0.4-SNAPSHOT</version>
<packaging>pom</packaging>
- <url>http://paimon.apache.org</url>
+ <url>https://paimon.apache.org</url>
<inceptionYear>2023</inceptionYear>
<licenses>
@@ -632,7 +632,8 @@ under the License.
<!-- The ApacheNoticeResourceTransformer
collects and aggregates NOTICE files -->
<transformer
implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer">
- <projectName>Apache Flink</projectName>
+ <projectName>Apache Paimon
(incubating)</projectName>
+
<inceptionYear>${project.inceptionYear}</inceptionYear>
<encoding>UTF-8</encoding>
</transformer>
</transformers>
diff --git a/tools/releasing/create_source_release.sh
b/tools/releasing/create_source_release.sh
index 99b27a062..f6263058c 100755
--- a/tools/releasing/create_source_release.sh
+++ b/tools/releasing/create_source_release.sh
@@ -77,10 +77,10 @@ rsync -a \
--exclude ".travis.yml" \
. paimon-${RELEASE_VERSION}
-tar czf ${RELEASE_DIR}/paimon-${RELEASE_VERSION}-src.tgz
paimon-${RELEASE_VERSION}
-gpg --armor --detach-sig ${RELEASE_DIR}/paimon-${RELEASE_VERSION}-src.tgz
+tar czf ${RELEASE_DIR}/apache-paimon-incubating-${RELEASE_VERSION}-src.tgz
paimon-${RELEASE_VERSION}
+gpg --armor --detach-sig
${RELEASE_DIR}/apache-paimon-incubating-${RELEASE_VERSION}-src.tgz
cd ${RELEASE_DIR}
-${SHASUM} paimon-${RELEASE_VERSION}-src.tgz >
paimon-${RELEASE_VERSION}-src.tgz.sha512
+${SHASUM} apache-paimon-incubating-${RELEASE_VERSION}-src.tgz >
apache-paimon-incubating-${RELEASE_VERSION}-src.tgz.sha512
rm -rf ${CLONE_DIR}