switch-to-experimental.diff
author Myhailo Danylenko <isbear@ukrpost.net>
Sun, 24 Mar 2013 00:59:26 +0200
changeset 84 6ff846816073
parent 59 a7e239972130
child 85 93c3cc0d7891
permissions -rw-r--r--
[cmdopts] A bit of progress

[local] Switch to experimental branch and api version

diff -r dd8cbf58c62e mcabber/ChangeLog.api
--- a/mcabber/ChangeLog.api	Fri Nov 30 14:59:29 2012 +0200
+++ b/mcabber/ChangeLog.api	Fri Nov 30 15:00:22 2012 +0200
@@ -1,3 +1,12 @@
+experimental (39)
+
+ * Change branch to "experimental".
+ * Api as defined by dev:25
+ * Add MCABBER_BRANCH_EXPERIMENTAL define to api.h
+ * MQ Patch: switch-to-experimental.diff
+
+  -- Myhailo Danylenko, 2012-11-30
+
 dev (25)
 
  * MQ patch record_dev25_in_changelog.diff
@@ -5,6 +14,15 @@
 
   -- Mikael Berthe, 2012-11-28
 
+experimental (37)
+
+ * Change branch to "experimental".
+ * Api as defined by dev:24
+ * Add MCABBER_BRANCH_EXPERIMENTAL define to api.h
+ * MQ Patch: switch-to-experimental
+
+  -- Myhailo Danylenko, 2012-10-18
+
 dev (24)
 
  * Changeset 0cb8ea02e472
@@ -14,6 +32,15 @@
 
   -- Myhailo Danylenko, 2012-10-20
 
+experimental (35)
+
+ * Change branch to "experimental".
+ * Api as defined by dev:23
+ * Add MCABBER_BRANCH_EXPERIMENTAL define to api.h
+ * MQ Patch: switch-to-experimental
+
+  -- Myhailo Danylenko, 2012-04-30
+
 dev (23)
 
  * Changeset 8dc418af3e72
@@ -35,6 +62,12 @@
 
   -- Hermitifier, 2011-10-03
 
+experimental (34)
+
+ * Api as defined by dev:20
+
+  -- Myhailo Danylenko, 2011-06-01
+
 dev (20)
 
  * Add cmd_set_safe() and cmd_is_safe()
diff -r dd8cbf58c62e mcabber/configure.ac
--- a/mcabber/configure.ac	Fri Nov 30 14:59:29 2012 +0200
+++ b/mcabber/configure.ac	Fri Nov 30 15:00:22 2012 +0200
@@ -272,7 +272,7 @@
 AM_CONDITIONAL([INSTALL_HEADERS], [test x$enable_modules != xno])
 
 # Prepare some config.h variables
-AC_DEFINE([MCABBER_BRANCH], "dev", [Mcabber branch])
+AC_DEFINE([MCABBER_BRANCH], "experimental", [Mcabber branch])
 AC_DEFINE([MCABBER_VERSION], "AC_PACKAGE_VERSION", [Mcabber version string])
 
 # We need _GNU_SOURCE for strptime() and strcasestr()
diff -r dd8cbf58c62e mcabber/mcabber/api.h
--- a/mcabber/mcabber/api.h	Fri Nov 30 14:59:29 2012 +0200
+++ b/mcabber/mcabber/api.h	Fri Nov 30 15:00:22 2012 +0200
@@ -4,10 +4,10 @@
 #include <glib.h>
 #include <mcabber/config.h> // For MCABBER_BRANCH
 
-#define MCABBER_API_VERSION 25
-#define MCABBER_API_MIN     24
+#define MCABBER_API_VERSION 39
+#define MCABBER_API_MIN     39
 
-#define MCABBER_BRANCH_DEV  1
+#define MCABBER_BRANCH_EXPERIMENTAL 1
 
 // cmd_add returns gpointer id
 #define MCABBER_API_HAVE_CMD_ID 1