switch-to-experimental.diff
author Myhailo Danylenko <isbear@ukrpost.net>
Fri, 04 Mar 2016 14:17:38 +0200
changeset 90 bed5beae28c5
parent 88 0a87df8ad9c1
child 92 66f7e2aa040c
permissions -rw-r--r--
Refresh queue for v1.0.2

# HG changeset patch
# Parent  3f04914d86436042efad7477cf6be0ab67cfcc8d
[local] Switch to experimental branch and api version

diff -r 3f04914d8643 mcabber/ChangeLog.api
--- a/mcabber/ChangeLog.api	Sat Feb 27 13:53:01 2016 +0100
+++ b/mcabber/ChangeLog.api	Fri Mar 04 13:54:06 2016 +0200
@@ -1,3 +1,12 @@
+experimental (45)
+
+ * Change branch to "experimental".
+ * Api as defined by dev:41
+ * Add MCABBER_BRANCH_EXPERIMENTAL define to api.h
+ * MQ Patch: switch-to-experimental.diff
+
+  -- Myhailo Danylenko, 2015-11-07
+
 dev (41)
 
  * Stable api 1.0.2:1
@@ -38,6 +47,15 @@
 
   -- Mikael Berthe, 2015-10-04
 
+experimental (43)
+
+ * Change branch to "experimental".
+ * Api as defined by dev:36
+ * Add MCABBER_BRANCH_EXPERIMENTAL define to api.h
+ * MQ Patch: switch-to-experimental.diff
+
+  -- Myhailo Danylenko, 2014-11-11
+
 dev (36)
 
  * Change prototype of gpg_encrypt()
@@ -120,6 +138,15 @@
 
   -- Mikael Berthe, 2013-09-29
 
+experimental (41)
+
+ * Change branch to "experimental".
+ * Api as defined by dev:26
+ * Add MCABBER_BRANCH_EXPERIMENTAL define to api.h
+ * MQ Patch: switch-to-experimental.diff
+
+  -- Myhailo Danylenko, 2012-11-30
+
 dev (26)
 
  * Changeset 69699ba3010f
@@ -129,6 +156,15 @@
 
   -- Mikael Berthe, 2013-04-28
 
+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)
 
  * Stable api 0.10.2:1
@@ -137,6 +173,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
@@ -146,6 +191,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
@@ -167,6 +221,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 3f04914d8643 mcabber/configure.ac
--- a/mcabber/configure.ac	Sat Feb 27 13:53:01 2016 +0100
+++ b/mcabber/configure.ac	Fri Mar 04 13:54:06 2016 +0200
@@ -293,7 +293,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 3f04914d8643 mcabber/mcabber/api.h
--- a/mcabber/mcabber/api.h	Sat Feb 27 13:53:01 2016 +0100
+++ b/mcabber/mcabber/api.h	Fri Mar 04 13:54:06 2016 +0200
@@ -4,10 +4,10 @@
 #include <glib.h>
 #include <mcabber/config.h> // For MCABBER_BRANCH
 
-#define MCABBER_API_VERSION 41
-#define MCABBER_API_MIN     41
+#define MCABBER_API_VERSION 45
+#define MCABBER_API_MIN     45
 
-#define MCABBER_BRANCH_DEV  1
+#define MCABBER_BRANCH_EXPERIMENTAL 1
 
 // cmd_add returns gpointer id
 #define MCABBER_API_HAVE_CMD_ID 1