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

Bump rusb 0.9.4 and libusb1-sys 0.7 #205

Merged
merged 1 commit into from
Apr 27, 2024
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changes

## 0.9.4

* bLength, bDescriptorType and wTotalLength to descriptors [#185]
* Use &self reference for all DeviceHandle methods [#186]
* fix: panic when trying to iterate over an interface with zero endpoints [#195]
* Log callback API added [#194]
* Bump libusb1-sys 0.7.0 [#205]

[#185]: https://github.com/a1ien/rusb/pull/185
[#186]: https://github.com/a1ien/rusb/pull/186
[#195]: https://github.com/a1ien/rusb/pull/195
[#194]: https://github.com/a1ien/rusb/pull/194
[#205]: https://github.com/a1ien/rusb/pull/205

## 0.9.3
* impl serde::{Serialize, Deserialize} for public enums [#167]
* Update deprecated doc link about language identifiers [#165]
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusb"
version = "0.9.3"
version = "0.9.4"
authors = ["David Cuddeback <[email protected]>", "Ilya Averyanov <[email protected]>"]
description = "Rust library for accessing USB devices."
license = "MIT"
Expand All @@ -21,7 +21,7 @@ vendored = [ "libusb1-sys/vendored" ]
members = ["libusb1-sys"]

[dependencies]
libusb1-sys = { path = "libusb1-sys", version = "0.6.4" }
libusb1-sys = { path = "libusb1-sys", version = "0.7" }
libc = "0.2"
serde = { version = "1.0", features = ["derive"], optional = true }

Expand Down
37 changes: 36 additions & 1 deletion libusb1-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
# Changes

## unreleased
## 0.7.0

* fix: Add missing fields to libusb_bos_descriptor and libusb_bos_dev_capability_descriptor [#161]
* Bump libusb to 1.0.27 [#201]
* Remove unneeded mut [#204]

[#161]: https://github.com/a1ien/rusb/pull/161
[#201]: https://github.com/a1ien/rusb/pull/201
[#204]: https://github.com/a1ien/rusb/pull/204

## 0.6.5
* Support pkg_config for MSVC. [#191]
* Fix package detection and build when cross-compiling from MSVC to GNU [#180]
* libusb_set_iso_packet_lengths panics on debug builds in newest nightly (2024-03-27) [#199]
* Added libusb_free_pollfds() in the available FFI methods. [#203]

[#191]: https://github.com/a1ien/rusb/pull/191
[#180]: https://github.com/a1ien/rusb/pull/180
[#199]: https://github.com/a1ien/rusb/pull/199
[#203]: https://github.com/a1ien/rusb/pull/203

## 0.6.3-0.6.4
* Patch for macOS Big Sur and newer allowing to link statically [#133]
* Add libudev include paths as specified by pkg-config [#140]

[#133]: https://github.com/a1ien/rusb/pull/133
[#140]: https://github.com/a1ien/rusb/pull/140


## 0.6.2
* Rename compiled library when vendored libusb is used [#130]

[#130]: https://github.com/a1ien/rusb/pull/130

## 0.6.1
* Add LIBUSB_OPTION_NO_DEVICE_DISCOVERY constant
* Bump vendored libusb version from 1.0.24 to 1.0.25 [#119]

[#119]: https://github.com/a1ien/rusb/pull/119
Expand Down
2 changes: 1 addition & 1 deletion libusb1-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "libusb1-sys"
version = "0.6.4"
version = "0.7.0"
authors = ["David Cuddeback <[email protected]>",
"Ilya Averyanov <[email protected]>"]
description = "FFI bindings for libusb."
Expand Down
Loading