aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2023-11-11 00:47:54 +0300
committerCaleb Maclennan <caleb@alerque.com>2023-11-11 00:48:02 +0300
commitde359ea4083ac6d944216229e4104dc36537c29c (patch)
tree53fd69b197faf5409d643f73ad61ec702155ea95
parentc93f9154e1aaa04bea4fd4d41a65d744b89a2fbf (diff)
downloadluasocket-de359ea4083ac6d944216229e4104dc36537c29c.tar.gz
luasocket-de359ea4083ac6d944216229e4104dc36537c29c.tar.bz2
luasocket-de359ea4083ac6d944216229e4104dc36537c29c.zip
chore(core): Update version markers to last released version
Closes #401
-rw-r--r--docs/installation.html2
-rw-r--r--makefile.dist2
-rw-r--r--src/luasocket.h2
-rwxr-xr-xsrc/makefile2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/installation.html b/docs/installation.html
index dcf9d36..24bc1bd 100644
--- a/docs/installation.html
+++ b/docs/installation.html
@@ -89,7 +89,7 @@ it should be easy to use LuaSocket. Just fire the interpreter and use the
89Lua 5.2.2 Copyright (C) 1994-2013 Lua.org, PUC-Rio 89Lua 5.2.2 Copyright (C) 1994-2013 Lua.org, PUC-Rio
90&gt; socket = require("socket") 90&gt; socket = require("socket")
91&gt; print(socket._VERSION) 91&gt; print(socket._VERSION)
92--&gt; LuaSocket 3.0.0 92--&gt; LuaSocket 3.1.0
93</pre> 93</pre>
94 94
95<p> Each module loads their dependencies automatically, so you only need to 95<p> Each module loads their dependencies automatically, so you only need to
diff --git a/makefile.dist b/makefile.dist
index 5ef44d3..e44dd9e 100644
--- a/makefile.dist
+++ b/makefile.dist
@@ -1,7 +1,7 @@
1#-------------------------------------------------------------------------- 1#--------------------------------------------------------------------------
2# Distribution makefile 2# Distribution makefile
3#-------------------------------------------------------------------------- 3#--------------------------------------------------------------------------
4DIST = luasocket-3.0.0 4DIST = luasocket-3.1.0
5 5
6TEST = \ 6TEST = \
7 test/README \ 7 test/README \
diff --git a/src/luasocket.h b/src/luasocket.h
index 1017fba..1e3d358 100644
--- a/src/luasocket.h
+++ b/src/luasocket.h
@@ -10,7 +10,7 @@
10/*-------------------------------------------------------------------------* \ 10/*-------------------------------------------------------------------------* \
11* Current socket library version 11* Current socket library version
12\*-------------------------------------------------------------------------*/ 12\*-------------------------------------------------------------------------*/
13#define LUASOCKET_VERSION "LuaSocket 3.0.0" 13#define LUASOCKET_VERSION "LuaSocket 3.1.0"
14#define LUASOCKET_COPYRIGHT "Copyright (C) 1999-2013 Diego Nehab" 14#define LUASOCKET_COPYRIGHT "Copyright (C) 1999-2013 Diego Nehab"
15 15
16/*-------------------------------------------------------------------------*\ 16/*-------------------------------------------------------------------------*\
diff --git a/src/makefile b/src/makefile
index 06f4d19..dbe328f 100755
--- a/src/makefile
+++ b/src/makefile
@@ -272,7 +272,7 @@ SOCKET_win64=wsocket.obj
272# 272#
273SO=$(SO_$(PLAT)) 273SO=$(SO_$(PLAT))
274O=$(O_$(PLAT)) 274O=$(O_$(PLAT))
275SOCKET_V=3.0.0 275SOCKET_V=3.1.0
276MIME_V=1.0.3 276MIME_V=1.0.3
277SOCKET_SO=socket-$(SOCKET_V).$(SO) 277SOCKET_SO=socket-$(SOCKET_V).$(SO)
278MIME_SO=mime-$(MIME_V).$(SO) 278MIME_SO=mime-$(MIME_V).$(SO)