-
Notifications
You must be signed in to change notification settings - Fork 69
fix: address feedback from initial release #223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,13 +63,6 @@ svn \ | |
| svn co "${dist_url}/${release_id}" | ||
| pushd "${release_id}" | ||
|
|
||
| echo "Renaming artifacts to their final release names..." | ||
| for fname in ./*; do | ||
| mv "${fname}" "${fname//-rc${rc}/}" | ||
| done | ||
| echo "Renamed files:" | ||
| ls -l | ||
|
|
||
| gh release create "${tag}" \ | ||
| --repo "${repository}" \ | ||
| --title "Apache Iceberg C++ ${version}" \ | ||
|
|
@@ -111,15 +104,15 @@ To: [email protected] | |
| Cc: [email protected] | ||
| Hello everyone, | ||
|
|
||
| I'm pleased to announce the release of Apache Iceberg C++ v${version}! | ||
| I'm pleased to announce the release of Apache Iceberg C++ ${version}! | ||
|
|
||
| Apache Iceberg is an open table format for huge analytic datasets, | ||
| Apache Iceberg is an open table format for huge analytic datasets. | ||
| Iceberg delivers high query performance for tables with tens of | ||
| petabytes of data, along with atomic commits, concurrent writes, and | ||
| SQL-compatible table evolution. | ||
|
|
||
| This release contains <COMMIT_COUNT> commits from <CONTRIBUTOR_COUNT> unique contributors. Among | ||
| the changes in this release are the following highlights: | ||
| This release contains <COMMIT_COUNT> commits from <CONTRIBUTOR_COUNT> unique contributors. | ||
| Among the changes in this release are the following highlights: | ||
|
|
||
| - <FEATURE_1> | ||
| - <FEATURE_2> | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -72,7 +72,7 @@ fi | |
| rc_hash="$(git rev-list --max-count=1 "${rc_tag}")" | ||
|
|
||
| id="apache-iceberg-cpp-${version}" | ||
| rc_id="${id}-${rc}" | ||
| rc_id="${id}-rc${rc}" | ||
| tar_gz="${id}.tar.gz" | ||
|
|
||
| if [ "${RELEASE_SIGN}" -gt 0 ]; then | ||
|
|
@@ -126,26 +126,26 @@ echo "" | |
| echo "---------------------------------------------------------" | ||
| cat <<MAIL | ||
| To: [email protected] | ||
| Subject: [VOTE][C++] Release Apache Iceberg C++ v${version} RC${rc} | ||
| Subject: [VOTE][C++] Release Apache Iceberg C++ ${version} RC${rc} | ||
|
|
||
| Hi, | ||
|
|
||
| I would like to propose the following release candidate (RC${rc}) of | ||
| Apache Iceberg C++ version v${version}. | ||
| Apache Iceberg C++ ${version}. | ||
|
|
||
| This release candidate is based on commit: | ||
| ${rc_hash} [1] | ||
|
|
||
| The source release rc${rc} is hosted at [2]. | ||
| The source release RC${rc} is hosted at [2]. | ||
|
|
||
| Please download, verify checksums and signatures, run the unit tests, | ||
| and vote on the release. See [3] for how to validate a release candidate. | ||
|
|
||
| The vote will be open for at least 72 hours. | ||
|
|
||
| [ ] +1 Release this as Apache Iceberg C++ v${version} | ||
| [ ] +1 Release this as Apache Iceberg C++ ${version} | ||
| [ ] +0 | ||
| [ ] -1 Do not release this as Apache Iceberg C++ v${version} because... | ||
| [ ] -1 Do not release this as Apache Iceberg C++ ${version} because... | ||
|
|
||
| [1]: https://github.com/apache/iceberg-cpp/tree/${rc_hash} | ||
| [2]: https://dist.apache.org/repos/dist/dev/iceberg/apache-iceberg-cpp-${version}-rc${rc} | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -118,9 +118,11 @@ test_source_distribution() { | |
|
|
||
| # Configure build | ||
| cmake -S . -B build \ | ||
| -DCMAKE_CXX_FLAGS="-Wno-deprecated-declarations" \ | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have added |
||
| -DCMAKE_BUILD_TYPE=Release \ | ||
| -DICEBERG_BUILD_STATIC=ON \ | ||
| -DICEBERG_BUILD_SHARED=ON | ||
| -DICEBERG_BUILD_SHARED=ON \ | ||
| --compile-no-warning-as-error | ||
|
|
||
| # Build | ||
| cmake --build build --parallel $(nproc || sysctl -n hw.ncpu || echo 4) | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need this hack any more. Now artifact names do not have
-rcNsuffix. @HeartLinkedcc @liurenjie1024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM