Skip to content

Commit

Permalink
Bumped version to 2.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
malloch committed Oct 18, 2024
1 parent 55654aa commit c53c67f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
- name: install wheel
run:
ls
&& python3 -m pip install libmapper-2.4.12-py3-none-win_amd64.whl
&& python3 -m pip install libmapper-2.4.13-py3-none-win_amd64.whl
- name: checkout
uses: actions/checkout@v4
with:
Expand Down
15 changes: 15 additions & 0 deletions NEWS.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# libmapper NEWS

Version 2.4.13
--------------

We are pleased to announce the release of version 2.4.13 of libmapper, an open-source, cross-platform software library for declaring data signals on a shared network and enabling arbitrary connections to be made between them. The main focus of libmapper development is to provide tools for creating and using systems for interactive control of media synthesis.

This release focuses on updates to the C# bindings: refactoring, documentation, and config scripts.

Additional changes:

- Fix for removal of private properties from non-local objects; added more checks to testprops.
- Java bindings: added missing Device method updateMaps().
- Updated tutorials.
- Include mediapipe example scripts when making dist.
- Tweaks to signal instance management

Version 2.4.12
--------------

Expand Down
2 changes: 1 addition & 1 deletion bindings/csharp/Libmapper.NET/Libmapper.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<NeutralLanguage>en</NeutralLanguage>
<Version>2.4.12.0</Version>
<Version>2.4.13.0</Version>
<TargetFrameworks>net8.0;netstandard2.1;net6.0;net7.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "libmapper"
version = "2.4.12"
version = "2.4.13"
license = { text = "LGPL-2.1-or-later" }
authors = [
{ name = "libmapper.org", email = "[email protected]" },
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ(2.61)

m4_define([LIBMAPPER_VERSION],[2.4.12])
m4_define([LIBMAPPER_VERSION],[2.4.13])
AC_INIT([libmapper],
m4_esyscmd_s([test -d .git/refs/tags && (git describe --tags | sed 's/\([^\-]*\)-\([^\-]*\)-\([^\-]*\)/\1.\2+\3/g') || echo LIBMAPPER_VERSION]),
[[email protected]],[],[http://libmapper.org])
Expand All @@ -18,7 +18,7 @@ AC_INIT([libmapper],
#
# If any interfaces have been removed since the last public release, then set
# age to 0.
SO_VERSION=13:4:2
SO_VERSION=13:5:2

AC_CONFIG_SRCDIR([src/device.c])
AC_CONFIG_HEADERS([src/config.h])
Expand Down

0 comments on commit c53c67f

Please sign in to comment.