Compare commits

...

3 Commits

Author SHA1 Message Date
Max Kellermann
14465be847 release v0.22.8 2021-05-22 17:33:36 +02:00
Max Kellermann
0e49de867d input/last: add nullptr check to Open(), fixes assertion failure
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1168
2021-05-22 17:33:25 +02:00
Max Kellermann
f2e4529707 increment version number to 0.22.8 2021-05-22 17:32:00 +02:00
5 changed files with 9 additions and 5 deletions

3
NEWS

@@ -1,3 +1,6 @@
ver 0.22.8 (2021/05/22)
* fix crash bug in "albumart" command (0.22.7 regression)
ver 0.22.7 (2021/05/19)
* protocol
- don't use glibc extension to parse time stamps

@@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.musicpd"
android:installLocation="auto"
android:versionCode="55"
android:versionName="0.22.7">
android:versionCode="56"
android:versionName="0.22.8">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>

@@ -38,7 +38,7 @@ author = 'Max Kellermann'
# built documents.
#
# The short X.Y version.
version = '0.22.7'
version = '0.22.8'
# The full version, including alpha/beta/rc tags.
release = version

@@ -1,7 +1,7 @@
project(
'mpd',
['c', 'cpp'],
version: '0.22.7',
version: '0.22.8',
meson_version: '>= 0.49.0',
default_options: [
'c_std=c11',

@@ -69,7 +69,8 @@ public:
is = open(new_uri, mutex);
uri = std::forward<U>(new_uri);
ScheduleClose();
if (is)
ScheduleClose();
return is.get();
}