This is an automated email from the ASF dual-hosted git repository. alamb pushed a commit to branch alamb-patch-1 in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
commit d3c8e1cdece93261637795260660946e5b16024a Author: Andrew Lamb <[email protected]> AuthorDate: Thu Aug 12 14:44:30 2021 -0400 Update dev README with fancier regular expression I am trying to incrementally improve the release notes --- dev/release/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev/release/README.md b/dev/release/README.md index c18dae8..3822d2b 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -77,6 +77,11 @@ To generate a bare bones CHANGELOG for maintenance releases, you can use a comma git log --pretty=oneline 5.0.0..apache/active_release ``` +This command will make markdown links that work when rendered outside of github: +```shell +git log --pretty=oneline 5.1.0..apache/active_release | sed -e 's|\(^[0-9a-f]*\) |[\1][https://github.com/apache/arrow-rs/commit/\1] |' +``` + # Mechanics of creating a release ## Prepare the release branch and tags
