diff options
author | Diego Nehab <diego@impa.br> | 2012-12-10 15:50:44 -0200 |
---|---|---|
committer | Diego Nehab <diego@impa.br> | 2012-12-10 15:50:44 -0200 |
commit | 9d97d39575f5f5125868c23bd7225cef7d488f24 (patch) | |
tree | 1b155a74f425ed1622da6c78351fd8ae2ad5b803 | |
parent | a4b45edef23b83c357ffba52ee7c44d6ba303fc5 (diff) | |
download | luasocket-9d97d39575f5f5125868c23bd7225cef7d488f24.tar.gz luasocket-9d97d39575f5f5125868c23bd7225cef7d488f24.tar.bz2 luasocket-9d97d39575f5f5125868c23bd7225cef7d488f24.zip |
Fix ltn12 version.
-rw-r--r-- | TODO | 6 | ||||
-rw-r--r-- | src/ltn12.lua | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ | |||
1 | - bizarre default values for getnameinfo should throw error instead! | 1 | - bizarre default values for getnameinfo should throw error instead! |
2 | 2 | ||
3 | > It's just too bad it can't talk to gmail - | ||
4 | > reason 1: they absolutely want TLS | ||
5 | > reason 2: unlike all the other SMTP implementations, they | ||
6 | > don't | ||
7 | > tolerate missing < > around adresses | ||
8 | |||
3 | - document the new bind and connect behavior. | 9 | - document the new bind and connect behavior. |
4 | - shouldn't we instead make the code compatible to Lua 5.2 | 10 | - shouldn't we instead make the code compatible to Lua 5.2 |
5 | without any compat stuff, and use a compatibility layer to | 11 | without any compat stuff, and use a compatibility layer to |
diff --git a/src/ltn12.lua b/src/ltn12.lua index d999e93..fca1cb2 100644 --- a/src/ltn12.lua +++ b/src/ltn12.lua | |||
@@ -19,7 +19,7 @@ pump = {} | |||
19 | 19 | ||
20 | -- 2048 seems to be better in windows... | 20 | -- 2048 seems to be better in windows... |
21 | BLOCKSIZE = 2048 | 21 | BLOCKSIZE = 2048 |
22 | _VERSION = "LTN12 1.0.1" | 22 | _VERSION = "LTN12 1.0.2" |
23 | 23 | ||
24 | ----------------------------------------------------------------------------- | 24 | ----------------------------------------------------------------------------- |
25 | -- Filter stuff | 25 | -- Filter stuff |