From cb3aee5e07991cf786315ef65a0f558fa76c543c Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Fri, 28 Oct 2022 17:22:45 +0200 Subject: [PATCH 1/2] ci: update upload-artifact to v3 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7dd4b22..f059335c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,13 +57,13 @@ jobs: cargo build -p swap --target ${{ matrix.target }} - name: Upload swap binary - uses: actions/upload-artifact@v2-preview + uses: actions/upload-artifact@v3 with: name: swap-${{ matrix.target }} path: target/${{ matrix.target }}/debug/swap - name: Upload asb binary - uses: actions/upload-artifact@v2-preview + uses: actions/upload-artifact@v3 with: name: asb-${{ matrix.target }} path: target/${{ matrix.target }}/debug/asb From 8b95c622934259bd07f77bee6482f61c6401b463 Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Fri, 28 Oct 2022 17:23:09 +0200 Subject: [PATCH 2/2] docs: update changelog for 0.11.1 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0841e04..e3a2701c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Immediately fetch transaction status upon subscription - Dependency updates ## [0.11.0] - 2022-08-11