diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2006-04-03 04:45:42 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2006-04-03 04:45:42 +0000 |
commit | 11282d17c8ecb6aa6fa31a3de742eae0215f4cc0 (patch) | |
tree | aeb65849f145f06f6fb0ddd6a54f79d30912be1f /src | |
parent | e9d477aba3bbc084c0a7872e4eaf725e2689e4a6 (diff) | |
download | luasocket-11282d17c8ecb6aa6fa31a3de742eae0215f4cc0.tar.gz luasocket-11282d17c8ecb6aa6fa31a3de742eae0215f4cc0.tar.bz2 luasocket-11282d17c8ecb6aa6fa31a3de742eae0215f4cc0.zip |
Almost done 2.0.1.
Diffstat (limited to 'src')
-rw-r--r-- | src/ltn12.lua | 1 | ||||
-rw-r--r-- | src/luasocket.h | 4 | ||||
-rw-r--r-- | src/mime.h | 4 | ||||
-rw-r--r-- | src/url.lua | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/src/ltn12.lua b/src/ltn12.lua index c49d130..f10ad18 100644 --- a/src/ltn12.lua +++ b/src/ltn12.lua | |||
@@ -20,6 +20,7 @@ pump = {} | |||
20 | 20 | ||
21 | -- 2048 seems to be better in windows... | 21 | -- 2048 seems to be better in windows... |
22 | BLOCKSIZE = 2048 | 22 | BLOCKSIZE = 2048 |
23 | _VERSION = "LTN12 1.0.1" | ||
23 | 24 | ||
24 | ----------------------------------------------------------------------------- | 25 | ----------------------------------------------------------------------------- |
25 | -- Filter stuff | 26 | -- Filter stuff |
diff --git a/src/luasocket.h b/src/luasocket.h index 0143fa7..46b5d06 100644 --- a/src/luasocket.h +++ b/src/luasocket.h | |||
@@ -13,8 +13,8 @@ | |||
13 | /*-------------------------------------------------------------------------*\ | 13 | /*-------------------------------------------------------------------------*\ |
14 | * Current socket library version | 14 | * Current socket library version |
15 | \*-------------------------------------------------------------------------*/ | 15 | \*-------------------------------------------------------------------------*/ |
16 | #define LUASOCKET_VERSION "LuaSocket 2.0" | 16 | #define LUASOCKET_VERSION "LuaSocket 2.0.1" |
17 | #define LUASOCKET_COPYRIGHT "Copyright (C) 2004-2005 Diego Nehab" | 17 | #define LUASOCKET_COPYRIGHT "Copyright (C) 2004-2006 Diego Nehab" |
18 | #define LUASOCKET_AUTHORS "Diego Nehab" | 18 | #define LUASOCKET_AUTHORS "Diego Nehab" |
19 | 19 | ||
20 | /*-------------------------------------------------------------------------*\ | 20 | /*-------------------------------------------------------------------------*\ |
@@ -15,8 +15,8 @@ | |||
15 | /*-------------------------------------------------------------------------*\ | 15 | /*-------------------------------------------------------------------------*\ |
16 | * Current MIME library version | 16 | * Current MIME library version |
17 | \*-------------------------------------------------------------------------*/ | 17 | \*-------------------------------------------------------------------------*/ |
18 | #define MIME_VERSION "MIME 1.0" | 18 | #define MIME_VERSION "MIME 1.0.1" |
19 | #define MIME_COPYRIGHT "Copyright (C) 2004-2005 Diego Nehab" | 19 | #define MIME_COPYRIGHT "Copyright (C) 2004-2006 Diego Nehab" |
20 | #define MIME_AUTHORS "Diego Nehab" | 20 | #define MIME_AUTHORS "Diego Nehab" |
21 | 21 | ||
22 | /*-------------------------------------------------------------------------*\ | 22 | /*-------------------------------------------------------------------------*\ |
diff --git a/src/url.lua b/src/url.lua index c700f90..18e5ab2 100644 --- a/src/url.lua +++ b/src/url.lua | |||
@@ -16,7 +16,7 @@ module("socket.url") | |||
16 | ----------------------------------------------------------------------------- | 16 | ----------------------------------------------------------------------------- |
17 | -- Module version | 17 | -- Module version |
18 | ----------------------------------------------------------------------------- | 18 | ----------------------------------------------------------------------------- |
19 | _VERSION = "URL 1.0" | 19 | _VERSION = "URL 1.0.1" |
20 | 20 | ||
21 | ----------------------------------------------------------------------------- | 21 | ----------------------------------------------------------------------------- |
22 | -- Encodes a string into its escaped hexadecimal representation | 22 | -- Encodes a string into its escaped hexadecimal representation |