Skip to content

Commit

Permalink
Release everest-v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanyi committed Jan 28, 2019
1 parent d1f329b commit 8740c17
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ matrix:
services:
- docker
before_install:
- docker pull iostio/iost-dev:2.3.0
- docker pull iostio/iost-dev:2.4.0
- git lfs install
before_script:
- git lfs pull
script:
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:2.3.0 make build
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:2.3.0 make lint
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:2.3.0 make test
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:2.4.0 make build
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:2.4.0 make lint
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:2.4.0 make test
after_success:
- bash <(curl -s https://codecov.io/bash)
- os: linux
Expand All @@ -49,7 +49,7 @@ matrix:
services:
- docker
before_install:
- docker pull iostio/iost-dev:2.3.0
- docker pull iostio/iost-dev:2.4.0
- git lfs install
before_script:
- git lfs pull
Expand All @@ -63,7 +63,7 @@ matrix:
services:
- docker
before_install:
- docker pull iostio/iost-dev:2.3.0
- docker pull iostio/iost-dev:2.4.0
- git lfs install
- pyenv global 3.6 && pip install awscli
- go get -u -v github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator
Expand Down
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Everest v2.4.0

Mon Jan 28 16:54:43 CST 2019

- Shrink docker image size.
- Fix bug: iwallet 'compile' command fails to generate contract abi on Linux.
- Increase block packing time from 300ms to 500ms.
- Modify 'maxTxLimitTime' from 100ms to 200ms.
- Increase gas charged for 'setCode'.
- Disable account referrer reward.
- Add a reserved field in transaction.

## Everest v2.3.1

Sat Jan 19 18:32:18 CST 2019
Expand All @@ -9,10 +21,10 @@ Sat Jan 19 18:32:18 CST 2019
Sat Jan 19 17:25:28 CST 2019

- Increase minimum GasLimit of transaction from 5000 to 6000.
- RPC: add "voteInfos" to getAccount api
- Complete vote, dividend test
- iwallet remove npm package dependencies
- Add exchange.iost system contract, used for creating accounts and transferring
- RPC: add "voteInfos" to getAccount api.
- Complete vote, dividend test.
- iWallet remove npm package dependencies.
- Add 'exchange.iost' system contract, used for creating accounts and transferring.

## Everest v2.2.1

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GO = go

VERSION = 2.3.1
VERSION = 2.4.0
COMMIT = $(shell git rev-parse --short HEAD)
PROJECT = github.com/iost-official/go-iost
DOCKER_IMAGE = iostio/iost-node:$(VERSION)-$(COMMIT)
Expand Down

0 comments on commit 8740c17

Please sign in to comment.