-
Notifications
You must be signed in to change notification settings - Fork 951
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BE-655 Create script for generating change log
- Based on fabric/scripts/changelog.sh - Usage: In case of v0.3.9.4 release, please follow as below: ./scripts/changelog.sh 6d96c9c v0.3.9.4 # "6d96c9c" is the commit hash of v0.3.9.3 release - Put together script files for the miscellaneous tasks under scripts directory Change-Id: I3d96448a006f7864712001d23b33bcab90ba11d1 Signed-off-by: Atsushi Neki <atsushin@fast.au.fujitsu.com>
- Loading branch information
Showing
4 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## v0.3.9.3 | ||
|
||
* [46ae8e3](https://github.com/hyperledger/blockchain-explorer/commit/46ae8e3) [BE-647](https://jira.hyperledger.org/browse/BE-647) pgservice fix | ||
* [9277c2c](https://github.com/hyperledger/blockchain-explorer/commit/9277c2c) [BE-647](https://jira.hyperledger.org/browse/BE-647) - PgService fix | ||
* [a2b753f](https://github.com/hyperledger/blockchain-explorer/commit/a2b753f) [BE-647](https://jira.hyperledger.org/browse/BE-647) pgservice fix | ||
|
||
## v0.3.9.2 | ||
|
||
* [e9e9f64](https://github.com/hyperledger/blockchain-explorer/commit/e9e9f64) [BE-645](https://jira.hyperledger.org/browse/BE-645) Update insecure python packages | ||
* [73e1ecf](https://github.com/hyperledger/blockchain-explorer/commit/73e1ecf) [BE-567](https://jira.hyperledger.org/browse/BE-567) explorer exposed on port 8080 instead of 8090 | ||
|
||
## v0.3.9.1 | ||
|
||
* [fa36248](https://github.com/hyperledger/blockchain-explorer/commit/fa36248) [BE-563](https://jira.hyperledger.org/browse/BE-563) Fix docker publish images | ||
|
||
|
||
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. | ||
|
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
cat > CHANGELOG.new << EOF | ||
## ${2} | ||
$(git log "$1..HEAD" --oneline | grep -v Merge | sed -e "s/\[\(BE-[0-9]*\)\]/\[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/ \(BE-[0-9]*\)/ \[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/\([0-9|a-z]*\)/* \[\1\](https:\/\/github.com\/hyperledger\/blockchain-explorer\/commit\/\1)/") | ||
EOF | ||
cat CHANGELOG.md >> CHANGELOG.new | ||
mv -f CHANGELOG.new CHANGELOG.md |
This file contains 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