From de359ea4083ac6d944216229e4104dc36537c29c Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 11 Nov 2023 00:47:54 +0300 Subject: [PATCH] chore(core): Update version markers to last released version Closes #401 --- docs/installation.html | 2 +- makefile.dist | 2 +- src/luasocket.h | 2 +- src/makefile | 2 +- 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 Lua 5.2.2 Copyright (C) 1994-2013 Lua.org, PUC-Rio > socket = require("socket") > print(socket._VERSION) ---> LuaSocket 3.0.0 +--> LuaSocket 3.1.0

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 @@ #-------------------------------------------------------------------------- # Distribution makefile #-------------------------------------------------------------------------- -DIST = luasocket-3.0.0 +DIST = luasocket-3.1.0 TEST = \ 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 @@ /*-------------------------------------------------------------------------* \ * Current socket library version \*-------------------------------------------------------------------------*/ -#define LUASOCKET_VERSION "LuaSocket 3.0.0" +#define LUASOCKET_VERSION "LuaSocket 3.1.0" #define LUASOCKET_COPYRIGHT "Copyright (C) 1999-2013 Diego Nehab" /*-------------------------------------------------------------------------*\ 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 # SO=$(SO_$(PLAT)) O=$(O_$(PLAT)) -SOCKET_V=3.0.0 +SOCKET_V=3.1.0 MIME_V=1.0.3 SOCKET_SO=socket-$(SOCKET_V).$(SO) MIME_SO=mime-$(MIME_V).$(SO)