diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-08 16:57:59 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-08 16:57:59 +0100 |
commit | 4031be743b96e3def712842f985b510651c8fcbe (patch) | |
tree | 32ab8efa81f8ad21d9bbe855e107e1c960f1d93d | |
parent | 9c5ea7b6a8ef13f87fbcd0554ff8a0b712c4b3a7 (diff) | |
download | prosody-4031be743b96e3def712842f985b510651c8fcbe.tar.gz prosody-4031be743b96e3def712842f985b510651c8fcbe.zip |
mod_posix, util.pposix: Bump version for API change
-rw-r--r-- | plugins/mod_posix.lua | 2 | ||||
-rw-r--r-- | util-src/pposix.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 96a05d73..f1957d1d 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -7,7 +7,7 @@ -- -local want_pposix_version = "0.3.5"; +local want_pposix_version = "0.3.6"; local pposix = assert(require "util.pposix"); if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end diff --git a/util-src/pposix.c b/util-src/pposix.c index c8c25ba9..f5cc8270 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -13,7 +13,7 @@ * POSIX support functions for Lua */ -#define MODULE_VERSION "0.3.5" +#define MODULE_VERSION "0.3.6" #include <stdlib.h> #include <math.h> |