You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/08/18 16:33:51 UTC

[arrow-rs] branch master updated: Update dev README with fancier regular expression for maintenance release notes (#687)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 0cd0ee3  Update dev README with fancier regular expression for maintenance release notes (#687)
0cd0ee3 is described below

commit 0cd0ee31eed0552daf884921198b6dffbfaf50bd
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Wed Aug 18 12:33:47 2021 -0400

    Update dev README with fancier regular expression for maintenance release notes (#687)
    
    * Update dev README with fancier regular expression
    
    I am trying to incrementally improve the release notes
    
    * Add bullet
    
    * prettier
    
    * tweak
---
 dev/release/README.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dev/release/README.md b/dev/release/README.md
index c18dae8..6899b0c 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -77,6 +77,12 @@ 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) |' | sed -e 's|#\([0-9]*\)|[#\1](https://github.com/apache/arrow-rs/pull/\1)|g''
+```
+
 # Mechanics of creating a release
 
 ## Prepare the release branch and tags