remove incubating

This commit is contained in:
ken.lj 2020-02-26 14:56:26 +08:00
parent 98cfbd6535
commit 8c2141cd1c
4 changed files with 16 additions and 16 deletions

2
NOTICE
View File

@ -1,4 +1,4 @@
Apache Dubbo (incubating)
Apache Dubbo
Copyright 2018-2019 The Apache Software Foundation
This product includes software developed at

View File

@ -1,4 +1,4 @@
# Apache Dubbo (incubating) Project
# Apache Dubbo Project
[![Build Status](https://travis-ci.org/apache/incubator-dubbo.svg?branch=master)](https://travis-ci.org/apache/incubator-dubbo)
[![codecov](https://codecov.io/gh/apache/incubator-dubbo/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-dubbo)
@ -6,7 +6,7 @@
![license](https://img.shields.io/github/license/alibaba/dubbo.svg)
![maven](https://img.shields.io/maven-central/v/com.alibaba/dubbo.svg)
Apache Dubbo (incubating) is a high-performance, java based RPC framework open-sourced by Alibaba. Please visit [dubbo official site ](http://dubbo.incubator.apache.org) for quick start and documentations, as well as [Wiki](https://github.com/apache/incubator-dubbo/wiki) for news, FAQ, and release notes.
Apache Dubbo is a high-performance, java based RPC framework open-sourced by Alibaba. Please visit [dubbo official site ](http://dubbo.incubator.apache.org) for quick start and documentations, as well as [Wiki](https://github.com/apache/incubator-dubbo/wiki) for news, FAQ, and release notes.
We are now collecting dubbo user info in order to help us to improve dubbo better, pls. kindly help us by providing yours on [issue#1012: Wanted: who's using dubbo](https://github.com/apache/incubator-dubbo/issues/1012), thanks :)
@ -15,10 +15,10 @@ We are now collecting dubbo user info in order to help us to improve dubbo bette
* [Side projects](https://github.com/apache/incubator-dubbo)
* [Dubbo Spring Boot](https://github.com/apache/incubator-dubbo-spring-boot-project) - Spring Boot Project for Dubbo.
* [Dubbo ops](https://github.com/apache/incubator-dubbo-ops) - The reference implementation for dubbo ops(dubbo-admin,dubbo-monitor-simple,dubbo-registry-simple,etc.).
* [Dubbo website](https://github.com/apache/incubator-dubbo-website) - Apache Dubbo (incubating) documents
* [Dubbo rpc-jsonrpc](https://github.com/apache/incubator-dubbo-rpc-jsonrpc) - The Json rpc module of Apache Dubbo (incubating) project
* [Dubbo feature-test](https://github.com/apache/incubator-dubbo-feature-test) - Apache Dubbo (incubating) feature test
* [Dubbo docs](https://github.com/apache/incubator-dubbo-docs) - Apache Dubbo (incubating) documentation
* [Dubbo website](https://github.com/apache/incubator-dubbo-website) - Apache Dubbo documents
* [Dubbo rpc-jsonrpc](https://github.com/apache/incubator-dubbo-rpc-jsonrpc) - The Json rpc module of Apache Dubbo project
* [Dubbo feature-test](https://github.com/apache/incubator-dubbo-feature-test) - Apache Dubbo feature test
* [Dubbo docs](https://github.com/apache/incubator-dubbo-docs) - Apache Dubbo documentation
* [Developer Mailing list](https://github.com/apache/incubator-dubbo/issues/1393) - Any questions or suggestions? [Subscribe](https://github.com/apache/incubator-dubbo/issues/1393) to (dev@dubbo.incubator.apache.org) to discuss with us.
* [Gitter channel](https://gitter.im/alibaba/dubbo) - Online chat room with Dubbo developers.
* [Dubbo user manual(English)](http://dubbo.apache.org/books/dubbo-user-book-en/) or [Dubbo用户手册(中文)](http://dubbo.apache.org/books/dubbo-user-book/) - Describe how to use Dubbo and all features of Dubbo concretely.

View File

@ -250,7 +250,7 @@
<profile>
<id>release</id>
<build>
<finalName>apache-dubbo-incubating-${project.version}</finalName>
<finalName>apache-dubbo-${project.version}</finalName>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>

View File

@ -150,8 +150,8 @@ git reset --hard $COMMIT_ID
cd distribution/target
echo "Start to shasum for bin/source.zip"
shasum -b -a 512 apache-dubbo-incubating-${VERSION}-source-release.zip >> apache-dubbo-incubating-${VERSION}-source-release.zip.sha512
shasum -b -a 512 apache-dubbo-incubating-${VERSION}-bin-release.zip >> apache-dubbo-incubating-${VERSION}-bin-release.zip.sha512
shasum -b -a 512 apache-dubbo-${VERSION}-source-release.zip >> apache-dubbo-${VERSION}-source-release.zip.sha512
shasum -b -a 512 apache-dubbo-${VERSION}-bin-release.zip >> apache-dubbo-${VERSION}-bin-release.zip.sha512
read -p "Need to push bin/source.zip to Apache svn repo ? (y/n, default is n) " NEED_PUSH_APACHE
@ -159,12 +159,12 @@ if [ "$NEED_PUSH_APACHE" = "y" ]; then
# Need to test
svn mkdir https://dist.apache.org/repos/dist/dev/incubator/dubbo/$VERSION -m "Create $VERSION directory"
svn co --force --depth=empty https://dist.apache.org/repos/dist/dev/incubator/dubbo/$VERSION .
svn add apache-dubbo-incubating-${VERSION}-source-release.zip
svn add apache-dubbo-incubating-${VERSION}-source-release.zip.asc
svn add apache-dubbo-incubating-${VERSION}-source-release.zip.sha512
svn add apache-dubbo-incubating-${VERSION}-bin-release.zip
svn add apache-dubbo-incubating-${VERSION}-bin-release.zip.asc
svn add apache-dubbo-incubating-${VERSION}-bin-release.zip.sha512
svn add apache-dubbo-${VERSION}-source-release.zip
svn add apache-dubbo-${VERSION}-source-release.zip.asc
svn add apache-dubbo-${VERSION}-source-release.zip.sha512
svn add apache-dubbo-${VERSION}-bin-release.zip
svn add apache-dubbo-${VERSION}-bin-release.zip.asc
svn add apache-dubbo-${VERSION}-bin-release.zip.sha512
svn commit -m "Upload dubbo-$VERSION"
echo "If this is your first release, make sure adding PUBLIC_KEY to KEYS manually."