From 16feb261e215462912a9eddf08189d6021a3db9e Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Thu, 11 Nov 2021 10:18:12 +0100
Subject: [PATCH] increment version number to 0.23.5

---
 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 a5581adba..ab21d0157 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+ver 0.23.5 (not yet released)
+
 ver 0.23.4 (2021/11/11)
 * protocol
   - add optional position parameter to "searchaddpl"
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index c46079dc5..c375aa58b 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="64"
-          android:versionName="0.23.4">
+          android:versionCode="65"
+          android:versionName="0.23.5">
 
   <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
 
diff --git a/doc/conf.py b/doc/conf.py
index a65fc98b5..32e239367 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.23.4'
+version = '0.23.5'
 # The full version, including alpha/beta/rc tags.
 #release = version + '~git'
 
diff --git a/meson.build b/meson.build
index ac65fcaec..39126836f 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
 project(
   'mpd',
   ['c', 'cpp'],
-  version: '0.23.4',
+  version: '0.23.5',
   meson_version: '>= 0.56.0',
   default_options: [
     'c_std=c11',