Skip to content

Commit

Permalink
Remove most references to the Incubator (apache#1059)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdblue authored May 22, 2020
1 parent 17caf95 commit 4ac241b
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 43 deletions.
10 changes: 0 additions & 10 deletions DISCLAIMER

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
[![](https://travis-ci.org/apache/incubator-iceberg.svg?branch=master)](https://travis-ci.org/apache/incubator-iceberg)
[![](https://badges.gitter.im/iceberg-tables/Lobby.svg)](https://gitter.im/iceberg-tables/Lobby)

Apache Iceberg (incubating) is a new table format for storing large, slow-moving tabular data. It is designed to improve on the de-facto standard table layout built into Hive, Presto, and Spark.
Apache Iceberg is a new table format for storing large, slow-moving tabular data. It is designed to improve on the de-facto standard table layout built into Hive, Presto, and Spark.

Background and documentation is available at <https://iceberg.incubator.apache.org>
Background and documentation is available at <https://iceberg.apache.org>


## Status

Iceberg is under active development in the Apache Incubator.
Iceberg is under active development at the Apache Software Foundation.

The core Java library that tracks table snapshots and metadata is complete, but still evolving. Current work is focused on integrating Iceberg into Spark and Presto.

Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,6 @@ project(':iceberg-spark-runtime') {
from(projectDir) {
include 'LICENSE'
include 'NOTICE'
include 'DISCLAIMER'
}

// Relocate dependencies to avoid conflicts
Expand Down
2 changes: 1 addition & 1 deletion deploy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ subprojects {

groupId = 'org.apache.iceberg'
pom {
name = 'Apache Iceberg (incubating)'
name = 'Apache Iceberg'
description = 'A table format for huge analytic datasets'
url = 'https://iceberg.apache.org'
licenses {
Expand Down
4 changes: 2 additions & 2 deletions dev/source-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [ -z "$2" ]; then
exit
fi

version=$1-incubating
version=$1
rc=$2

if [ -d tmp/ ]; then
Expand Down Expand Up @@ -64,7 +64,7 @@ tarball=$tag.tar.gz

# be conservative and use the release hash, even though git produces the same
# archive (identical hashes) using the scm tag
git archive $release_hash --prefix $tag/ -o $tarball .baseline api arrow common core data dev gradle gradlew hive mr orc parquet pig project spark spark-runtime LICENSE NOTICE DISCLAIMER README.md build.gradle baseline.gradle deploy.gradle tasks.gradle jmh.gradle gradle.properties settings.gradle versions.lock versions.props version.txt
git archive $release_hash --prefix $tag/ -o $tarball .baseline api arrow common core data dev gradle gradlew hive mr orc parquet pig project spark spark-runtime LICENSE NOTICE README.md build.gradle baseline.gradle deploy.gradle tasks.gradle jmh.gradle gradle.properties settings.gradle versions.lock versions.props version.txt

# sign the archive
gpg --armor --output ${tarball}.asc --detach-sig $tarball
Expand Down
8 changes: 6 additions & 2 deletions site/docs/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,20 @@
*/

.navbar-brand:before {
content: '';
content: ' ';
display: block;
background: url("/img/favicon-96x96.png") no-repeat;
background-size: cover;
width: 1.3em;
height: 1.3em;
margin-left: -1.6em;
margin-right: 0.5em;
float: left;
}

.navbar-brand {
margin-right: 1em;
}

.floating {
float: right;
}
Expand Down
5 changes: 0 additions & 5 deletions site/docs/disclaimer.md

This file was deleted.

12 changes: 6 additions & 6 deletions site/docs/how-to-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ For more information, see the Gradle [signing documentation](https://docs.gradle
To create the source release artifacts, run the `source-release.sh` script with the release version and release candidate number:

```bash
dev/source-release.sh 0.7.0 0
dev/source-release.sh 0.8.1 0
```
```
Preparing source for apache-iceberg-0.7.0-incubating-rc0
Preparing source for apache-iceberg-0.8.1-rc0
...
Success! The release candidate is available here:
https://dist.apache.org/repos/dist/dev/incubator/iceberg/apache-iceberg-0.7.0-incubating-rc0/
https://dist.apache.org/repos/dist/dev/incubator/iceberg/apache-iceberg-0.8.1-rc0/
Commit SHA1: 4b4716c76559b3cdf3487e6b60ab52950241989b
```
Expand All @@ -60,8 +60,8 @@ Convenience binaries are created using the source release tarball from in the la
Untar the source release and go into the release directory:

```bash
tar xzf apache-iceberg-0.7.0-incubating.tar.gz
cd apache-iceberg-0.7.0-incubating
tar xzf apache-iceberg-0.8.1.tar.gz
cd apache-iceberg-0.8.1
```

To build and publish the convenience binaries, run the `dev/stage-binaries.sh` script. This will push to a release staging repository.
Expand All @@ -76,7 +76,7 @@ Next, you need to close the staging repository:
2. In the menu on the left, choose "Staging Repositories"
3. Select the Iceberg repository
4. At the top, select "Close" and follow the instructions
* In the comment field use "Apache Iceberg (incubating) &lt;version&gt; RC&lt;num&gt;"
* In the comment field use "Apache Iceberg &lt;version&gt; RC&lt;num&gt;"

### Start a VOTE thread

Expand Down
2 changes: 1 addition & 1 deletion site/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ Iceberg was designed to solve correctness problems in eventually-consistent clou

Iceberg has been designed and developed to be an open community standard with a [specification](spec) to ensure compatibility across languages and implementations.

[Apache Iceberg is open source](community), and is an incubating project at the [Apache Software Foundation](https://www.apache.org/).
[Apache Iceberg is open source](community), and is developed at the [Apache Software Foundation](https://www.apache.org/).

3 changes: 1 addition & 2 deletions site/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# under the License.
#

site_name: Apache Iceberg (incubating)
site_name: Apache Iceberg
site_description: A table format for large, slow-moving tabular data

remote_name: apache
Expand All @@ -44,7 +44,6 @@ nav:
- Project:
- Community: community.md
- Releases: releases.md
- Disclaimer: disclaimer.md
- Trademarks: trademarks.md
- How to Release: how-to-release.md
- User docs:
Expand Down
10 changes: 0 additions & 10 deletions spark-runtime/DISCLAIMER

This file was deleted.

0 comments on commit 4ac241b

Please sign in to comment.