From f255a485b745cb84ce4a735d6126f4360216aa2d Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Fri, 22 Feb 2019 15:28:03 +0100
Subject: [PATCH] increment version number to 0.21.6

---
 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 9f2355f11..58a635c51 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+ver 0.21.6 (not yet released)
+
 ver 0.21.5 (2019/02/22)
 * protocol
   - fix deadlock in "albumart" command
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index afadd6e57..c0dfc58fb 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="27"
-          android:versionName="0.21.5">
+          android:versionCode="28"
+          android:versionName="0.21.6">
 
   <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="26"/>
 
diff --git a/doc/conf.py b/doc/conf.py
index 9402ae0d5..1d486ae48 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.5'
+version = '0.21.6'
 # The full version, including alpha/beta/rc tags.
 release = version
 
diff --git a/meson.build b/meson.build
index 69a093e76..8e092a4c6 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
 project(
   'mpd',
   ['c', 'cpp'],
-  version: '0.21.5',
+  version: '0.21.6',
   meson_version: '>= 0.47.2',
   default_options: [
     'c_std=c99',