diff --git a/NEWS b/NEWS index e83a7d8d6..43e0fdded 100644 --- a/NEWS +++ b/NEWS @@ -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) 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. -Older versions: - - # PipeWire 1.0.5 (2024-04-15) This is a bugfix release that is API and ABI compatible with previous diff --git a/meson.build b/meson.build index ab8bf5ca3..0ea256e9b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('pipewire', ['c' ], - version : '1.0.6', + version : '1.0.7', license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], meson_version : '>= 0.61.1', default_options : [ 'warning_level=3',