Skip to content

Commit

Permalink
Prepare 20.2.1 (#476)
Browse files Browse the repository at this point in the history
* add change log

* bump version
  • Loading branch information
om26er authored Feb 10, 2020
1 parent 9d08106 commit 331107e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Release v20.2.1

* MISC: XBR Code cleaning (#473)
* MISC: Add missing license headers, other cleanups (#471)
* NEW: XBR SimpleBuyer with EIP712 signing (#470)

---

# Release v20.1.2

* FIX: make SimpleSeller.start() async. Add seller example (#467)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BUILD_DATE=$(shell date -u +"%Y-%m-%d")
AUTOBAHN_JAVA_VERSION='20.1.2'
AUTOBAHN_JAVA_VERSION='20.2.1'
AUTOBAHN_JAVA_VCS_REF='unknown'

default:
Expand Down
3 changes: 1 addition & 2 deletions changelog_gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ set -e

FILE=$(mktemp)
TAG_CURRENT=$(git describe --abbrev=0)
TAG_PREVIOUS=$(git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1))
echo '# Release' $TAG_CURRENT'\n' >> $FILE
git log $TAG_PREVIOUS..$TAG_CURRENT --pretty=format:"* %s" >> $FILE
git log $TAG_CURRENT...HEAD --pretty=format:"* %s" >> $FILE
echo '\n\n---\n' >> $FILE
cat CHANGELOG.md >> $FILE
cp $FILE CHANGELOG.md
Expand Down

0 comments on commit 331107e

Please sign in to comment.