From 6fdae1139fabf5dd7b3a47e22e3519409556380e Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Wed, 29 Apr 2020 23:19:13 +0200
Subject: [PATCH] increment version number to 0.21.24

---
 NEWS                        | 2 ++
 android/AndroidManifest.xml | 4 ++--
 doc/conf.py                 | 2 +-
 meson.build                 | 2 +-
 4 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/NEWS b/NEWS
index d64d9e50e..fa4954baa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+ver 0.21.24 (not yet released)
+
 ver 0.21.23 (2020/04/23)
 * protocol
   - add tag fallback for AlbumSort
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index 64d0802b1..bde283bce 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -2,8 +2,8 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
           package="org.musicpd"
           android:installLocation="auto"
-          android:versionCode="46"
-          android:versionName="0.21.23">
+          android:versionCode="47"
+          android:versionName="0.21.24">
 
   <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28"/>
 
diff --git a/doc/conf.py b/doc/conf.py
index 246aa98c3..c76f391da 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -38,7 +38,7 @@ author = 'Max Kellermann'
 # built documents.
 #
 # The short X.Y version.
-version = '0.21.23'
+version = '0.21.24'
 # The full version, including alpha/beta/rc tags.
 release = version
 
diff --git a/meson.build b/meson.build
index 800785b85..7c5dcac9f 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
 project(
   'mpd',
   ['c', 'cpp'],
-  version: '0.21.23',
+  version: '0.21.24',
   meson_version: '>= 0.49.0',
   default_options: [
     'c_std=c99',