This commit is contained in:
Wim Taymans 2024-05-24 11:12:36 +02:00
parent 5ebb089bfa
commit 59fe89d41a
2 changed files with 27 additions and 4 deletions

29
NEWS
View file

@ -1,3 +1,29 @@
# PipeWire 1.0.7 (2024-05-24)
This is a small bugfix release that is API and ABI compatible with previous
1.0.x releases.
## Highlights
- Fix a potential race/crash.
- Fix some problems with negotiation of large integers and floats.
- Fix JACK sysex MIDI event handling.
- Some more smaller fixes and improvements.
## PipeWire
- Fix a potential race when adding/removing a port to be scheduled.
## Modules
- Fix FFADO default device handling. (#4023)
## SPA
- Fix in integer overflow and float/double compare in POD.
## JACK
- Copy larger MIDI events correctly.
Older versions:
# PipeWire 1.0.6 (2024-05-09) # PipeWire 1.0.6 (2024-05-09)
This is a bugfix release that is API and ABI compatible with previous This is a bugfix release that is API and ABI compatible with previous
@ -50,9 +76,6 @@ This is a bugfix release that is API and ABI compatible with previous
- Negotiation was improved in pipewiresrc. - Negotiation was improved in pipewiresrc.
Older versions:
# PipeWire 1.0.5 (2024-04-15) # PipeWire 1.0.5 (2024-04-15)
This is a bugfix release that is API and ABI compatible with previous This is a bugfix release that is API and ABI compatible with previous

View file

@ -1,5 +1,5 @@
project('pipewire', ['c' ], project('pipewire', ['c' ],
version : '1.0.6', version : '1.0.7',
license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ],
meson_version : '>= 0.61.1', meson_version : '>= 0.61.1',
default_options : [ 'warning_level=3', default_options : [ 'warning_level=3',