Update mcabber versions
authorMyhailo Danylenko <isbear@ukrpost.net>
Wed, 29 Jun 2011 19:25:16 +0300
changeset 28 c035fbbab184
parent 27 a8151b97e13c
child 29 23fa36d480fb
Update mcabber versions
pep.c
--- a/pep.c	Sat May 07 03:40:02 2011 +0300
+++ b/pep.c	Wed Jun 29 19:25:16 2011 +0300
@@ -35,9 +35,9 @@
 
 #define DESCRIPTION ( "Common PEP events listener" )
 
-static module_info_t info_pep_experimental = {
-	.branch      = "experimental",
-	.api         = 27,
+static module_info_t info_pep_dev = {
+	.branch      = "dev",
+	.api         = 20,
 	.version     = PROJECT_VERSION,
 	.description = DESCRIPTION,
 	.requires    = NULL,
@@ -46,18 +46,7 @@
 	.next        = NULL,
 };
 
-static module_info_t info_pep_dev = {
-	.branch      = "dev",
-	.api         = 13,
-	.version     = PROJECT_VERSION,
-	.description = DESCRIPTION,
-	.requires    = NULL,
-	.init        = pep_init,
-	.uninit      = pep_uninit,
-	.next        = &info_pep_experimental,
-};
-
-module_info_t info_pep = {
+module_info_t info_pep_0_10_0 = {
 	.branch      = "0.10.0",
 	.api         = 1,
 	.version     = PROJECT_VERSION,
@@ -68,6 +57,17 @@
 	.next        = &info_pep_dev,
 };
 
+module_info_t info_pep = {
+	.branch      = "0.10.1",
+	.api         = 1,
+	.version     = PROJECT_VERSION,
+	.description = DESCRIPTION,
+	.requires    = NULL,
+	.init        = pep_init,
+	.uninit      = pep_uninit,
+	.next        = &info_pep_0_10_0,
+};
+
 typedef struct pep_handler_struct pep_handler_t;
 
 struct pep_handler_struct {