Skip to content

Commit

Permalink
Update version to 0.30 and update LO_SO_VERSION accordingly.
Browse files Browse the repository at this point in the history
  • Loading branch information
radarsat1 committed Mar 3, 2019
1 parent 7b2c28c commit 8b2b2cc
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions 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
--------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions 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
#
Expand All @@ -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)])
Expand Down

0 comments on commit 8b2b2cc

Please sign in to comment.