diff options
author | Max Kellermann <max@duempel.org> | 2015-02-06 17:16:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-02-06 17:16:57 +0100 |
commit | b17b53955c28ca479ab4b0f46c32ba461ace1211 (patch) | |
tree | f7967d2d4d5f492826f0e31eac3d120c8160b6e0 | |
parent | ff2b427cc139adbf20e684db69dab9305c91c212 (diff) | |
download | mpd-b17b53955c28ca479ab4b0f46c32ba461ace1211.tar.gz mpd-b17b53955c28ca479ab4b0f46c32ba461ace1211.tar.xz mpd-b17b53955c28ca479ab4b0f46c32ba461ace1211.zip |
configure.ac: raise protocol version to 0.20.0
A few protocol feature have been added to the 0.20 branch, and thus we
should raise the protocol version in the server greeting.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2b61b7eb4..2259b1b06 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ AM_SILENT_RULES AC_CONFIG_HEADERS(config.h) AC_CONFIG_MACRO_DIR([m4]) -AC_DEFINE(PROTOCOL_VERSION, "0.19.0", [The MPD protocol version]) +AC_DEFINE(PROTOCOL_VERSION, "0.20.0", [The MPD protocol version]) GIT_COMMIT=`GIT_DIR="$srcdir/.git" git describe --dirty --always 2>/dev/null` if test x$GIT_COMMIT != x; then |