Skip to content

Commit d45ebfc

Browse files
committed
Bumping version to 2.6.1
1 parent fa3dedb commit d45ebfc

5 files changed

Lines changed: 17 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ jobs:
405405
- name: install wheel
406406
run:
407407
ls
408-
&& python3 -m pip install libmapper-2.6-py3-none-win_amd64.whl
408+
&& python3 -m pip install libmapper-2.6.1-py3-none-win_amd64.whl
409409
- name: checkout
410410
uses: actions/checkout@v6
411411
with:

NEWS.markdown

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# libmapper NEWS
22

3-
version 2.6
3+
Version 2.6.1
4+
-------------
5+
6+
We are pleased to announce the release of version 2.6.1 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.
7+
8+
The main focus of this release is a bugfix for graph subscription handling. It also includes improvements for dealing with self-maps and updates for the MediaPipe integration example scripts.
9+
10+
Version 2.6
411
-----------
512

613
We are pleased to announce the release of version 2.6 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.
@@ -72,7 +79,7 @@ C++ Bindings:
7279
- Fixed memory leak in `List` class
7380
- Fixed null `std::string`
7481

75-
version 2.5.2
82+
Version 2.5.2
7683
-------------
7784

7885
We are pleased to announce the release of version 2.5.2 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.
@@ -116,14 +123,14 @@ CI:
116123
- CI/Windows: install Python setuptools
117124

118125

119-
version 2.5.1
126+
Version 2.5.1
120127
-------------
121128

122129
We are pleased to announce the release of version 2.5.1 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.
123130

124131
This version focuses only on tooling for building Python wheels and continuous integration.
125132

126-
version 2.5
133+
Version 2.5
127134
--------------
128135

129136
We are pleased to announce the release of version 2.5 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.
@@ -189,7 +196,7 @@ Testing suite:
189196
- Added shared-graph mode to testsignalhierarchy.
190197
- Added some automation for running Valgrind tests.
191198

192-
version 2.4.14
199+
Version 2.4.14
193200
--------------
194201

195202
We are pleased to announce the release of version 2.4.14 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.

bindings/csharp/Libmapper.NET/Libmapper.NET.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
1414
<NeutralLanguage>en</NeutralLanguage>
15-
<Version>2.6.0.0</Version>
15+
<Version>2.6.1.0</Version>
1616
<TargetFrameworks>net8.0;netstandard2.1;net6.0;net7.0</TargetFrameworks>
1717
<LangVersion>latest</LangVersion>
1818
<IncludeSymbols>true</IncludeSymbols>

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "libmapper"
7-
version = "2.6"
7+
version = "2.6.1"
88
license = { text = "LGPL-2.1-or-later" }
99
authors = [
1010
{ name = "libmapper.org", email = "dot_mapper@googlegroups.com" },

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_PREREQ(2.61)
22

3-
m4_define([LIBMAPPER_VERSION],[2.6])
3+
m4_define([LIBMAPPER_VERSION],[2.6.1])
44
AC_INIT([libmapper],
55
m4_esyscmd_s([(if git describe --tags > /dev/null; then (git describe --tags | sed 's/\([^\-]*\)-\([^\-]*\)-\([^\-]*\)/\1.\2+\3/g') else echo LIBMAPPER_VERSION; fi)]),
66
[dot_mapper@googlegroups.com],[],[http://libmapper.org])
@@ -18,7 +18,7 @@ AC_INIT([libmapper],
1818
#
1919
# If any interfaces have been removed since the last public release, then set
2020
# age to 0.
21-
SO_VERSION=16:0:0
21+
SO_VERSION=16:1:0
2222

2323
AC_CONFIG_SRCDIR([src/device.c])
2424
AC_CONFIG_HEADERS([src/config.h])

0 commit comments

Comments
 (0)