Add info struct for stable
authorMyhailo Danylenko <isbear@ukrpost.net>
Sun, 11 Apr 2010 22:17:59 +0300
changeset 24 bbf9dc965f77
parent 23 ff11a676f645
child 25 ce961d2c167a
Add info struct for stable
pep.c
--- a/pep.c	Wed Apr 07 21:52:28 2010 +0300
+++ b/pep.c	Sun Apr 11 22:17:59 2010 +0300
@@ -37,7 +37,7 @@
 
 static module_info_t info_pep_experimental = {
 	.branch      = "experimental",
-	.api         = 23,
+	.api         = 27,
 	.version     = PROJECT_VERSION,
 	.description = DESCRIPTION,
 	.requires    = NULL,
@@ -46,7 +46,7 @@
 	.next        = NULL,
 };
 
-module_info_t info_pep = {
+static module_info_t info_pep_dev = {
 	.branch      = "dev",
 	.api         = 13,
 	.version     = PROJECT_VERSION,
@@ -57,6 +57,17 @@
 	.next        = &info_pep_experimental,
 };
 
+module_info_t info_pep = {
+	.branch      = "0.10.0",
+	.api         = 1,
+	.version     = PROJECT_VERSION,
+	.description = DESCRIPTION,
+	.requires    = NULL,
+	.init        = pep_init,
+	.uninit      = pep_uninit,
+	.next        = &info_pep_dev,
+};
+
 typedef struct pep_handler_struct pep_handler_t;
 
 struct pep_handler_struct {