diff options
author | Thomas Harning Jr <harningt@gmail.com> | 2011-07-06 23:56:20 -0400 |
---|---|---|
committer | Thomas Harning Jr <harningt@gmail.com> | 2011-07-06 23:56:20 -0400 |
commit | db628bce216e74a0f7507e614e9db5289ee972ee (patch) | |
tree | aee4b8acc3c5b71276b754136472103e4d158cbc | |
parent | d813466fadaced2c4c75e8d8a57bc9dc60b0a8f4 (diff) | |
download | luaevent-prosody-db628bce216e74a0f7507e614e9db5289ee972ee.tar.gz luaevent-prosody-db628bce216e74a0f7507e614e9db5289ee972ee.zip |
base/lua: fixes incorrectly recorded version and prepares a new release
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | lua/luaevent.lua | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +0.3.2 - 2011-07-06 + * Fixed recorded version in Lua 0.3.1 - 2011-01-15 * Merged all of luaevent-prosody (0.1.1) changes (missed updates) 0.3.0 - 2011-01-15 diff --git a/lua/luaevent.lua b/lua/luaevent.lua index 54eabf6..509d94f 100644 --- a/lua/luaevent.lua +++ b/lua/luaevent.lua @@ -6,7 +6,7 @@ module("luaevent", package.seeall) require("luaevent.core") _NAME = "luaevent"; -_VERSION = "0.3.0"; +_VERSION = "0.3.2"; local EV_READ = luaevent.core.EV_READ local EV_WRITE = luaevent.core.EV_WRITE |