diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dffbd8b..bf9c7cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,7 @@ name: build -on: [push, pull_request] +on: + - pull_request jobs: check: @@ -36,12 +37,12 @@ jobs: toolchain: stable args: --all -- --check - # - name: Run cargo clippy - # uses: actions-rs/cargo@v1 - # with: - # command: clippy - # toolchain: nightly - # args: -- -D warnings + - name: Run cargo clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + toolchain: stable + args: -- -D warnings test: name: Run tests on ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 807050f..254fe72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed * Update btleplug to 0.10 +* Full rewrite to simplified async architecture with only minor changes to +public API (i.e. most things still work just by adding an `.await` to the end) ### Deprecated