Skip to content

Commit

Permalink
Merge pull request #71 from chnejohnson/dev
Browse files Browse the repository at this point in the history
Release v0.5.4
  • Loading branch information
johnson86tw authored Aug 7, 2022
2 parents d92da4d + d851394 commit c8babd1
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [main, dev]

pull_request:
branches: [main, dev]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/cache@v2
with:
path: ~/.yarn
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- run: npm install -g yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn build:demo
- run: yarn build:docs
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v0.5.4 (2022-8-7)

- refactor: clean up chain names & urls PR#56
- fix: issue #57 metamask network change PR#57
- feat: autoupdate balance every 10 seconds PR#63
- feat: add ens support PR#65
- fix: avoid uncaught error when user closes the WalletConnect QR modal PR#69

Special thanks to @re2005 and @Mulander-J for their contributions!

## v0.5.3 (2022-6-14)

#### Feature
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-dapp",
"version": "0.5.3",
"version": "0.5.4",
"description": "Vue 3 library for building Dapps on Ethereum",
"repository": "https://github.com/chnejohnson/vue-dapp",
"bugs": {
Expand Down

0 comments on commit c8babd1

Please sign in to comment.