Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
Update dependencies (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamilsan committed Nov 30, 2022
1 parent b83abf3 commit 72460a5
Show file tree
Hide file tree
Showing 7 changed files with 139 additions and 67 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
uses: actions/checkout@v3

- name: Artifact cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Remove binaries from cache
run: rm -vf target/wasm32-unknown-unknown/release/*.wasm

- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -39,12 +42,12 @@ jobs:
- name: Run linter
run: make linter

- name: Build
run: make build

- name: Run tests
run: make test

- name: Build
run: make build

- name: Upload artifacts
if: github.event_name == 'push'
uses: actions/upload-artifact@v3
Expand All @@ -60,7 +63,7 @@ jobs:
uses: actions/download-artifact@v3

- name: Delete previous release
uses: dev-drprasad/delete-tag-and-release@v0.1.3
uses: dev-drprasad/delete-tag-and-release@v0.2.0
with:
delete_release: true
tag_name: build
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT

- name: Show version
run: echo ${{ steps.version.outputs.VERSION }}
Expand All @@ -30,7 +30,10 @@ jobs:
uses: actions/checkout@v3

- name: Cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Remove binaries from cache
run: rm -vf target/wasm32-unknown-unknown/release/*.wasm

- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3] - 2022-11-22
### Changed
- Updated `gstd`, `gtest`, `gear-wasm-builder` to the `stable` branch.

## [0.1.2] - 2022-10-26
### Changed
- Updated `gstd`, `gtest`, `gear-wasm-builder` to the current commit hash (`#d4552434`).
Expand All @@ -18,7 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release.

[Unreleased]: https://github.com/gear-dapps/fungible-token/compare/0.1.2...HEAD
[Unreleased]: https://github.com/gear-dapps/fungible-token/compare/0.1.3...HEAD
[0.1.3]: https://github.com/gear-dapps/fungible-token/compare/0.1.2...0.1.3
[0.1.2]: https://github.com/gear-dapps/fungible-token/compare/0.1.1...0.1.2
[0.1.1]: https://github.com/gear-dapps/fungible-token/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/gear-dapps/fungible-token/compare/a0eac6e...0.1.0
Loading

0 comments on commit 72460a5

Please sign in to comment.