andrewrk / libsoundio

C library for cross-platform real-time audio input and output
http://libsound.io/
MIT License
1.92k stars 229 forks source link

Changelog for 2.0.0 #208

Closed chohner closed 11 months ago

chohner commented 5 years ago

Any chance of getting an update of he changelog regarding the new 2.0.0 release?

Seems like plenty of fixes were merged in but it is hard to go through the list of commits looking for the breaking change that triggered the major version update

andrewrk commented 5 years ago

the reason for the major version bump is 1 line:

https://github.com/andrewrk/libsoundio/compare/1.1.0...2.0.0

This added field:

     /// Core Audio and WASAPI only: current output Audio Unit volume. Float, 0.0-1.0.
    float volume; 

The API is backwards compatible but the ABI changed. So the soversion had to get bumped.

chohner commented 5 years ago

Thanks. Feel free to close and thanks for the great work

davidebeatrici commented 5 years ago

Shouldn't the v2 branch be merged into master now that the version is bumped to 2.0.0?