diff --git a/mythtv/bindings/perl/MythTV.pm b/mythtv/bindings/perl/MythTV.pm index 9129cb3393b..b3e81f221f9 100644 --- a/mythtv/bindings/perl/MythTV.pm +++ b/mythtv/bindings/perl/MythTV.pm @@ -106,8 +106,8 @@ package MythTV; # Note: as of July 21, 2010, this is actually a string, to account for proto # versions of the form "58a". This will get used if protocol versions are # changed on a fixes branch ongoing. - our $PROTO_VERSION = "65"; - our $PROTO_TOKEN = "D2BB94C2"; + our $PROTO_VERSION = "66"; + our $PROTO_TOKEN = "0C0FFEE0"; # currentDatabaseVersion is defined in libmythtv in # mythtv/libs/libmythtv/dbcheck.cpp and should be the current MythTV core diff --git a/mythtv/bindings/php/MythBackend.php b/mythtv/bindings/php/MythBackend.php index 138bf94d93d..6c833cb73d0 100644 --- a/mythtv/bindings/php/MythBackend.php +++ b/mythtv/bindings/php/MythBackend.php @@ -11,8 +11,8 @@ class MythBackend { // MYTH_PROTO_VERSION is defined in libmyth in mythtv/libs/libmyth/mythcontext.h // and should be the current MythTV protocol version. - static $protocol_version = '65'; - static $protocol_token = 'D2BB94C2'; + static $protocol_version = '66'; + static $protocol_token = '0C0FFEE0'; // The character string used by the backend to separate records static $backend_separator = '[]:[]'; diff --git a/mythtv/bindings/python/MythTV/static.py b/mythtv/bindings/python/MythTV/static.py index 2f731adc924..e5a821c684b 100644 --- a/mythtv/bindings/python/MythTV/static.py +++ b/mythtv/bindings/python/MythTV/static.py @@ -8,8 +8,8 @@ SCHEMA_VERSION = 1275 NVSCHEMA_VERSION = 1007 MUSICSCHEMA_VERSION = 1018 -PROTO_VERSION = '65' -PROTO_TOKEN = 'D2BB94C2' +PROTO_VERSION = '66' +PROTO_TOKEN = '0C0FFEE0' BACKEND_SEP = '[]:[]' INSTALL_PREFIX = '/usr/local' diff --git a/mythtv/libs/libmythbase/mythversion.h b/mythtv/libs/libmythbase/mythversion.h index 54428e7f485..1d1c963b507 100644 --- a/mythtv/libs/libmythbase/mythversion.h +++ b/mythtv/libs/libmythbase/mythversion.h @@ -35,8 +35,8 @@ * mythtv/bindings/python/MythTV/static.py (version number) * mythtv/bindings/python/MythTV/mythproto.py (layout) */ -#define MYTH_PROTO_VERSION "65" -#define MYTH_PROTO_TOKEN "D2BB94C2" +#define MYTH_PROTO_VERSION "66" +#define MYTH_PROTO_TOKEN "0C0FFEE0" MBASE_PUBLIC const char *GetMythSourceVersion();