Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ jobs:
- name: Check examples (all features)
run: cargo +${{ steps.msrv.outputs.all-features }} check --examples --all-features --workspace --verbose

- name: Check ASIO examples
- name: Build ASIO examples
working-directory: asio-sys
run: cargo +${{ env.MSRV_WINDOWS }} check --examples --verbose --workspace
run: cargo +${{ env.MSRV_WINDOWS }} build --examples --verbose --workspace

# macOS ARM64
macos:
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.17.3] - 2026-02-17
## [0.17.3] - 2026-02-18

### Changed

- Reverted SemVer-breaking `DeviceBusy` error variant addition.

### Fixed

- **ASIO**: Fix linker errors.

## [0.17.2] - 2026-02-08 [YANKED]

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ windows = { version = ">=0.59, <=0.62", features = [
"Win32_UI_Shell_PropertiesSystem",
] }
audio_thread_priority = { version = "0.34", optional = true }
asio-sys = { version = "0.2", path = "asio-sys", optional = true }
asio-sys = { version = "0.2.6", path = "asio-sys", optional = true }
num-traits = { version = "0.2", optional = true }
jack = { version = "0.13", optional = true }

Expand Down
6 changes: 6 additions & 0 deletions asio-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.6] - 2026-02-17

### Fixed
- Link `advapi32` to resolve Windows Registry API symbols.

## [0.2.5] - 2026-01-04

### Fixed
Expand Down Expand Up @@ -77,6 +82,7 @@ Initial release.
- Support for MSVC toolchain on Windows
- Basic error types: `AsioError`, `LoadDriverError`

[0.2.6]: https://github.com/RustAudio/cpal/compare/asio-sys-v0.2.5...asio-sys-v0.2.6
[0.2.5]: https://github.com/RustAudio/cpal/compare/asio-sys-v0.2.4...asio-sys-v0.2.5
[0.2.4]: https://github.com/RustAudio/cpal/compare/asio-sys-v0.2.3...asio-sys-v0.2.4
[0.2.3]: https://github.com/RustAudio/cpal/compare/asio-sys-v0.2.2...asio-sys-v0.2.3
Expand Down
2 changes: 1 addition & 1 deletion asio-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asio-sys"
version = "0.2.5"
version = "0.2.6"
authors = ["Tom Gowan <tomrgowan@gmail.com>"]
description = "Low-level interface and binding generation for the steinberg ASIO SDK."
repository = "https://github.com/RustAudio/cpal/"
Expand Down
1 change: 1 addition & 0 deletions asio-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ fn main() {
}

// Print out links to needed libraries
println!("cargo:rustc-link-lib=dylib=advapi32");
println!("cargo:rustc-link-lib=dylib=ole32");
println!("cargo:rustc-link-lib=dylib=user32");
println!("cargo:rustc-link-search={}", out_dir.display());
Expand Down