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

hidapi-async: update libusb/hidapi submodule of the hidapi dep #44

Merged
merged 3 commits into from
May 11, 2023
Merged
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
8 changes: 4 additions & 4 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[target.x86_64-apple-darwin]
linker = "x86_64-apple-darwin20.2-clang"
ar = "x86_64-apple-darwin20.2-ar"
linker = "x86_64-apple-darwin21.4-clang"
ar = "x86_64-apple-darwin21.4-ar"

[target.aarch64-apple-darwin]
linker = "aarch64-apple-darwin20.2-clang"
ar = "aarch64-apple-darwin20.2-ar"
linker = "aarch64-apple-darwin21.4-clang"
ar = "aarch64-apple-darwin21.4-ar"

[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on: [push, pull_request]
jobs:
check:
name: Check
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
override: true

- name: Install system package deps
run: sudo apt-get install libusb-1.0-0-dev
run: sudo apt-get install libudev-dev

- name: Run cargo check
uses: actions-rs/cargo@v1
Expand All @@ -30,7 +30,7 @@ jobs:

lint:
name: Lint
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -44,7 +44,7 @@ jobs:
components: rustfmt, clippy

- name: Install system package deps
run: sudo apt-get install libusb-1.0-0-dev
run: sudo apt-get install libudev-dev

- name: Run cargo fmt
uses: actions-rs/cargo@v1
Expand All @@ -60,7 +60,7 @@ jobs:

test:
name: Test Suite
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -73,7 +73,7 @@ jobs:
override: true

- name: Install system package deps
run: sudo apt-get install libusb-1.0-0-dev
run: sudo apt-get install libudev-dev

- name: Run cargo test
uses: actions-rs/cargo@v1
Expand All @@ -82,7 +82,7 @@ jobs:

build-linux:
name: Build linux release
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -95,7 +95,7 @@ jobs:
override: true

- name: Install package deps
run: sudo apt-get install libusb-1.0-0-dev -y
run: sudo apt-get install libudev-dev -y

- name: Run cargo build
uses: actions-rs/cargo@v1
Expand All @@ -111,7 +111,7 @@ jobs:

release-linux:
name: Release linux
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -125,7 +125,7 @@ jobs:

- name: Install package deps
run: >
sudo apt-get install libusb-1.0-0-dev -y;
sudo apt-get install libudev-dev -y;
sudo apt-get install ruby -y;
sudo gem install --no-doc fpm;
cargo install toml-echo
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.5.1
- Fix bug where on macOS 13.3, the bridge would register one BitBox02 twice
- Release built using the `shiftcrypto/bitbox-bridge:1` Docker image

## 1.5.0

- Whitelist adalite.io
Expand Down
Loading