Skip to content

Commit

Permalink
Merge pull request #244 from bnb-chain/develop
Browse files Browse the repository at this point in the history
release: prepare release for v0.2.3-alpha.2
  • Loading branch information
unclezoro authored Jul 13, 2023
2 parents d906f0e + 4273f00 commit 8d414b9
Show file tree
Hide file tree
Showing 96 changed files with 3,320 additions and 1,032 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,16 @@ permissions:
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
# golangci:
# name: golangci-lint
# runs-on: ubuntu-latest
# steps:
# - uses: actions/setup-go@v3
# with:
# go-version: 1.19.8
# - uses: actions/checkout@v3
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v3
# with:
# # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
# version: v1.50.1

golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.20.5
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.53.3
11 changes: 9 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ run:
linters:
disable-all: true
enable:
- depguard
- dogsled
- exportloopref
- goconst
Expand All @@ -18,7 +17,6 @@ linters:
- gosimple
- govet
- ineffassign
- nakedret
- nolintlint
- staticcheck
- stylecheck
Expand All @@ -39,6 +37,15 @@ issues:
- text: "ST1016:"
linters:
- stylecheck
- text: "SA1019: errors"
linters:
- staticcheck
- text: "SA1019: sdkerr"
linters:
- staticcheck
- text: "SA1019: sdkerrors"
linters:
- staticcheck
- path: "migrations"
text: "SA1019:"
linters:
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## v0.2.3-alpha.2
This is a maintenance release.

* [#231](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/231) feat: enable diff on iavl store
* [#233](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/233) chore: bnb wording change
* [#232](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/232) feat: using abi.encode for update param tx
* [#222](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/222) feat: performance improvement
* [#234](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/234) staking: create validator in one transaction
* [#237](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/237) chore: update greenfield-cometbft-db version
* [#238](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/238) feat: show proposal failed reason
* [#239](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/239) feat: add bls verification
* [#242](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/242) feat: support cross chain for multiple blockchains

## v0.2.3-alpha.1
This release upgrades the reference cosmos-sdk to v0.47.3.
Please refer to the [changelogs of cosmos-sdk v0.47.3](https://github.com/cosmos/cosmos-sdk/blob/v0.47.3/CHANGELOG.md) for more details regarding the changes.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ benchmark:
###############################################################################

golangci_lint_cmd=golangci-lint
golangci_version=v1.50.1
golangci_version=v1.53.3

lint:
@echo "--> Running linter"
Expand Down
337 changes: 206 additions & 131 deletions api/cosmos/gov/v1/gov.pulsar.go

Large diffs are not rendered by default.

Loading

0 comments on commit 8d414b9

Please sign in to comment.