Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 0.1.0 #165

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# v0.1.0

## Bug Fixes
- Update Gas Consumed to Decimal values [#159](https://github.com/archway-network/archway/pull/159)

## Breaking Changes
- Refactor codebase
- Add reward module [#202](https://github.com/archway-network/archway/pull/202)
- Add tracking module[#202](https://github.com/archway-network/archway/pull/202)
- Add minimum consensus fee middleware [#202](https://github.com/archway-network/archway/pull/202)
- Add lazy distribution feature [#207](https://github.com/archway-network/archway/pull/207)
- Add Wasm Bindings [#196](https://github.com/archway-network/archway/pull/196) [#210](https://github.com/archway-network/archway/pull/210)

## Changes
- Use archway/wasmd fork [#162](https://github.com/archway-network/archway/pull/159)
- Update cosmos sdk to 0.45.7 [#212](https://github.com/archway-network/archway/pull/212)
- Upgrade to IBC v3 [#204](https://github.com/archway-network/archway/pull/204)


# v0.0.5

## Breaking Changes
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/usr/bin/make -f

PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation')
# VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
VERSION := "0.0.5"
edjroz marked this conversation as resolved.
Show resolved Hide resolved
VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
LEDGER_ENABLED ?= true
# SDK_PACK := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's/ /\@/g')
Expand Down