Skip to content

Commit

Permalink
v2.1.4 release (#64)
Browse files Browse the repository at this point in the history
Signed-off-by: Mark S. Lewis <[email protected]>
  • Loading branch information
bestbeforetoday authored Jul 3, 2020
1 parent f9755b5 commit a610d60
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.1.4
Fri 3 Jul 2020 11:18:31 BST

* [f9755b5](https://github.com/hyperledger/fabric-sdk-java/commit/f9755b5) [FABJ-521] Allow arrays of PEM content in connection profile (#62)

## v2.1.2
Tue 19 May 2020 16:00:37 BST

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.hyperledger.fabric-sdk-java</groupId>
<artifactId>fabric-sdk-java</artifactId>
<packaging>jar</packaging>
<version>2.1.3</version>
<version>2.1.4</version>
<name>fabric-java-sdk</name>
<description>Java SDK for Hyperledger fabric project</description>
<url>https://www.hyperledger.org/community/projects</url>
Expand Down
5 changes: 5 additions & 0 deletions scripts/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
# SPDX-License-Identifier: Apache-2.0
#

if [ $# -ne 2 ]; then
echo 'Missing required arguments: lastReleaseCommitHash releaseVersion' >&2
exit 1
fi

echo "## $2\n$(date)" >> CHANGELOG.new
echo "" >> CHANGELOG.new
git log $1..HEAD --oneline | grep -v Merge | sed -e "s/\[\(FAB-[0-9]*\)\]/\[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/\([0-9|a-z]*\)/* \[\1\](https:\/\/github.com\/hyperledger\/fabric-sdk-java\/commit\/\1)/" >> CHANGELOG.new
Expand Down

0 comments on commit a610d60

Please sign in to comment.