diff --git a/dev/changelog/0.1.0.md b/dev/changelog/0.1.0.md index 96fedc89c..bdf88d9cd 100644 --- a/dev/changelog/0.1.0.md +++ b/dev/changelog/0.1.0.md @@ -19,7 +19,7 @@ under the License. # DataFusion Comet 0.1.0 Changelog -This release consists of 261 commits from 40 contributors. See credits at the end of this changelog for more information. +This release consists of 262 commits from 40 contributors. See credits at the end of this changelog for more information. **Implemented enhancements:** @@ -298,8 +298,8 @@ This release consists of 261 commits from 40 contributors. See credits at the en Thank you to everyone who contributed to this release. Here is a breakdown of commits (PRs merged) per contributor. ``` -88 Liang-Chi Hsieh - 40 Andy Grove + 88 Liang-Chi Hsieh + 41 Andy Grove 27 Chao Sun 26 advancedxy 11 Huaxin Gao diff --git a/dev/release/generate-changelog.py b/dev/release/generate-changelog.py index 6793d7177..f7dc9070d 100755 --- a/dev/release/generate-changelog.py +++ b/dev/release/generate-changelog.py @@ -130,7 +130,7 @@ def generate_changelog(repo, repo_name, tag1, tag2, version): print_pulls(repo_name, "Other", other) # show code contributions - credits = subprocess.check_output(f"git shortlog -sn {tag1}..{tag2}", shell=True, text=True).strip() + credits = subprocess.check_output(f"git shortlog -sn {tag1}..{tag2}", shell=True, text=True).rstrip() print("## Credits\n") print("Thank you to everyone who contributed to this release. Here is a breakdown of commits (PRs merged) "