diff --git a/NEWS b/NEWS index 51a52aac..079f14f6 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,26 @@ +-------------------------------------------- +2019-03-03: Release 0.30 +-------------------------------------------- + +We are pleased to present stable release 0.30 of LibLo, the +lightweight, easy to use implementation of the Open Sound Control +protocol. + +Open Sound Control (OSC) is a protocol for communication among +computers, sound synthesizers, and other multimedia devices that is +designed for use over modern network transports. + +Changes of note since the 0.29 release include: + +- Functions to wait and receive on multiple servers (lo_servers_wait + and lo_servers_recv_noblock) +- Improvements to the CMake build system. +- Remove premake4 files and rely on CMake for building on Windows. +- Fix memory leak in lo_server_recv_raw_stream. +- C++ wrapper: Fix memory leak on string allocation. +- oscdump: Disable line buffering in Windows to support MSYS2 output. + -------------------------------------------- 2017-08-11: Release 0.29 -------------------------------------------- diff --git a/configure.ac b/configure.ac index 06332848..77c5070b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.69]) -AC_INIT([liblo],[0.29],[liblo-devel@lists.sourceforge.net]) +AC_INIT([liblo],[0.30],[liblo-devel@lists.sourceforge.net]) # libtool version: current:revision:age # @@ -15,9 +15,9 @@ AC_INIT([liblo],[0.29],[liblo-devel@lists.sourceforge.net]) # # If any interfaces have been removed since the last public release, then set # age to 0. -m4_define([lt_current], 10) +m4_define([lt_current], 11) m4_define([lt_revision], 0) -m4_define([lt_age], 3) +m4_define([lt_age], 4) m4_define([lt_version_info], [lt_current:lt_revision:lt_age]) m4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)])