Skip to content

Commit

Permalink
Release v3.0.0-rc5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Ji committed Feb 21, 2019
1 parent db25b2f commit 7ac2a6e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 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:3.0.0-rc4
- docker pull iostio/iost-dev:3.0.0-rc5
- 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:3.0.0-rc4 make build
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:3.0.0-rc4 make lint
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:3.0.0-rc4 make test
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:3.0.0-rc5 make build
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:3.0.0-rc5 make lint
- docker run -it --rm -v $(pwd):/gopath/src/github.com/iost-official/go-iost iostio/iost-dev:3.0.0-rc5 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:3.0.0-rc4
- docker pull iostio/iost-dev:3.0.0-rc5
- git lfs install
before_script:
- git lfs pull
Expand All @@ -63,7 +63,7 @@ matrix:
services:
- docker
before_install:
- docker pull iostio/iost-dev:3.0.0-rc4
- docker pull iostio/iost-dev:3.0.0-rc5
- 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## v3.0.0 rc5

Thu Feb 21 14:52:28 CST 2019

- Fix read auth bug.
- Optimize P2P routing table query logic.
- Optimize JS contract safety.
- Optimize synchronizer block hash query logic.

## v3.0.0 rc4

Mon Feb 18 20:46:06 CST 2019
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 = 3.0.0-rc4
VERSION = 3.0.0-rc5
COMMIT = $(shell git rev-parse --short HEAD)
PROJECT = github.com/iost-official/go-iost
DOCKER_IMAGE = iostio/iost-node:$(VERSION)-$(COMMIT)
Expand Down
2 changes: 1 addition & 1 deletion build/k8s/iserver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
spec:
containers:
- name: iserver
image: "iostio/iost-node:3.0.0-rc4-$COMMIT"
image: "iostio/iost-node:3.0.0-rc5-$COMMIT"
imagePullPolicy: "IfNotPresent"
command:
- /bin/bash
Expand Down
2 changes: 1 addition & 1 deletion build/k8s/itest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: itest
image: "iostio/iost-node:3.0.0-rc4-$COMMIT"
image: "iostio/iost-node:3.0.0-rc5-$COMMIT"
imagePullPolicy: "IfNotPresent"
command: ['/bin/bash', '-c', 'sleep infinity']
resources:
Expand Down

0 comments on commit 7ac2a6e

Please sign in to comment.