aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego Nehab <diego@impa.br>2013-06-11 19:10:03 +0800
committerDiego Nehab <diego@impa.br>2013-06-11 19:10:03 +0800
commit6e00ffd62f135c30be3b5a6404a722beb1bdf215 (patch)
treea49bf542aa24ae34e563ff6b0bd5a5e1a139b41f /src
parent906abf29d146272512feddd74005a8833ee34e7d (diff)
downloadluasocket-6e00ffd62f135c30be3b5a6404a722beb1bdf215.tar.gz
luasocket-6e00ffd62f135c30be3b5a6404a722beb1bdf215.tar.bz2
luasocket-6e00ffd62f135c30be3b5a6404a722beb1bdf215.zip
Changing from 2.1-rc1 to 3.0-rc1.
Diffstat (limited to 'src')
-rw-r--r--src/ltn12.lua2
-rw-r--r--src/luasocket.h5
-rw-r--r--src/makefile2
-rw-r--r--src/mime.h4
-rw-r--r--src/url.lua4
5 files changed, 8 insertions, 9 deletions
diff --git a/src/ltn12.lua b/src/ltn12.lua
index 8742b0e..5b10f56 100644
--- a/src/ltn12.lua
+++ b/src/ltn12.lua
@@ -23,7 +23,7 @@ _M.pump = pump
23 23
24-- 2048 seems to be better in windows... 24-- 2048 seems to be better in windows...
25_M.BLOCKSIZE = 2048 25_M.BLOCKSIZE = 2048
26_M._VERSION = "LTN12 1.0.2" 26_M._VERSION = "LTN12 1.0.3"
27 27
28----------------------------------------------------------------------------- 28-----------------------------------------------------------------------------
29-- Filter stuff 29-- Filter stuff
diff --git a/src/luasocket.h b/src/luasocket.h
index f4463a7..f75d21f 100644
--- a/src/luasocket.h
+++ b/src/luasocket.h
@@ -11,9 +11,8 @@
11/*-------------------------------------------------------------------------*\ 11/*-------------------------------------------------------------------------*\
12* Current socket library version 12* Current socket library version
13\*-------------------------------------------------------------------------*/ 13\*-------------------------------------------------------------------------*/
14#define LUASOCKET_VERSION "LuaSocket 2.1-rc1" 14#define LUASOCKET_VERSION "LuaSocket 3.0-rc1"
15#define LUASOCKET_COPYRIGHT "Copyright (C) 1999-2012 Diego Nehab" 15#define LUASOCKET_COPYRIGHT "Copyright (C) 1999-2013 Diego Nehab"
16#define LUASOCKET_AUTHORS "Diego Nehab"
17 16
18/*-------------------------------------------------------------------------*\ 17/*-------------------------------------------------------------------------*\
19* This macro prefixes all exported API functions 18* This macro prefixes all exported API functions
diff --git a/src/makefile b/src/makefile
index 313ca51..50d5cc1 100644
--- a/src/makefile
+++ b/src/makefile
@@ -202,7 +202,7 @@ SOCKET_win32=wsocket.obj
202# 202#
203SO=$(SO_$(PLAT)) 203SO=$(SO_$(PLAT))
204O=$(O_$(PLAT)) 204O=$(O_$(PLAT))
205SOCKET_V=2.1 205SOCKET_V=3.0-rc1
206MIME_V=1.0.3 206MIME_V=1.0.3
207SOCKET_SO=socket.$(SO).$(SOCKET_V) 207SOCKET_SO=socket.$(SO).$(SOCKET_V)
208MIME_SO=mime.$(SO).$(MIME_V) 208MIME_SO=mime.$(SO).$(MIME_V)
diff --git a/src/mime.h b/src/mime.h
index 150e7ad..99968a5 100644
--- a/src/mime.h
+++ b/src/mime.h
@@ -13,8 +13,8 @@
13/*-------------------------------------------------------------------------*\ 13/*-------------------------------------------------------------------------*\
14* Current MIME library version 14* Current MIME library version
15\*-------------------------------------------------------------------------*/ 15\*-------------------------------------------------------------------------*/
16#define MIME_VERSION "MIME 1.0.3-rc1" 16#define MIME_VERSION "MIME 1.0.3"
17#define MIME_COPYRIGHT "Copyright (C) 2004-2012 Diego Nehab" 17#define MIME_COPYRIGHT "Copyright (C) 2004-2013 Diego Nehab"
18#define MIME_AUTHORS "Diego Nehab" 18#define MIME_AUTHORS "Diego Nehab"
19 19
20/*-------------------------------------------------------------------------*\ 20/*-------------------------------------------------------------------------*\
diff --git a/src/url.lua b/src/url.lua
index 3c4f85d..7809535 100644
--- a/src/url.lua
+++ b/src/url.lua
@@ -18,7 +18,7 @@ local _M = socket.url
18----------------------------------------------------------------------------- 18-----------------------------------------------------------------------------
19-- Module version 19-- Module version
20----------------------------------------------------------------------------- 20-----------------------------------------------------------------------------
21_M._VERSION = "URL 1.0.2" 21_M._VERSION = "URL 1.0.3"
22 22
23----------------------------------------------------------------------------- 23-----------------------------------------------------------------------------
24-- Encodes a string into its escaped hexadecimal representation 24-- Encodes a string into its escaped hexadecimal representation
@@ -304,4 +304,4 @@ function _M.build_path(parsed, unsafe)
304 return path 304 return path
305end 305end
306 306
307return _M \ No newline at end of file 307return _M