diff options
-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 |