From 40620b478cc7257f4463a88c581b2663c7490230 Mon Sep 17 00:00:00 2001 From: fudongbai <296179868@qq.com> Date: Thu, 24 Sep 2020 13:59:06 +0800 Subject: [PATCH] prepare release 1.0.3 --- CHANGELOG.md | 10 ++++++++++ params/version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29a443bdb..863538b06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.0.3 + +IMPROVEMENT +* [\#36](https://github.com/binance-chain/bsc/pull/36) add max gas allwance calculation + +## v1.0.2 + +IMPROVEMENT +* [\#29](https://github.com/binance-chain/bsc/pull/29) eth/tracers: revert reason in call_tracer + error for failed internal… + ## v1.0.1-beta IMPROVEMENT diff --git a/params/version.go b/params/version.go index c90a95a46..519aaecad 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 0 // Minor version component of the current release - VersionPatch = 2 // Patch version component of the current release + VersionPatch = 3 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )