# HG changeset patch # User Myhailo Danylenko # Date 1271013479 -10800 # Node ID bbf9dc965f779369a92905628beb3d35b91ade92 # Parent ff11a676f6452d75c191e25ea3afe656479ecbf0 Add info struct for stable diff -r ff11a676f645 -r bbf9dc965f77 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 {