From e5304e9dc9a0c0c32b3689c3f141cf266d27f59c Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Tue, 21 Sep 2021 08:23:38 -0400 Subject: [PATCH] Bump to version 2.4.1 See the CHANGELOG for more info --- CHANGELOG.md | 10 ++++++++++ meson.build | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04a327d..493cd3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## Version 2.4.1 + +Version 2.4.1 contains bugfixes and new features. + +* Fix a crash in playerctld when players use TrackList and Playlists interfaces (#215) +* Add the `trunc()` template function (#224) +* Allow to use playerctl as a subproject and cpp linking (#228) +* bugfix: subscribe to all signals when multiple template functions are used (#235) +* bugfix: workaround for players that use uint64 values in the formatter (#234) + ## Version 2.3.1 Version 2.3.1 contains bugfixes and new features. diff --git a/meson.build b/meson.build index 3ea6a5e..11bb21a 100644 --- a/meson.build +++ b/meson.build @@ -1,11 +1,11 @@ project( 'playerctl', 'c', - version: '2.3.1', + version: '2.4.1', meson_version: '>=0.56.0' ) -release_date = 'November 30, 2020' +release_date = 'September 21, 2021' gnome = import('gnome') pkgconfig = import('pkgconfig')