From 8841c629cdef9d4c4f1913ddff5b806e49963071 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sat, 6 Feb 2021 02:39:18 +1100 Subject: [PATCH] Release v0.4 --- NEWS | 7 +++++++ http-scm-0.rockspec => http-0.4-0.rockspec | 5 +++-- http/version.lua | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) rename http-scm-0.rockspec => http-0.4-0.rockspec (93%) diff --git a/NEWS b/NEWS index d8e41295..815d79a7 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +0.4 - 2021-02-06 + + - Support multiple elliptic curves under OpenSSL 1.1.1+ (#150) + - Improve support for Lua 5.4 (not longer require bit library to be installed) (#180) + - Ignore delayed RST_STREAM frames in HTTP 2 (#145) + + 0.3 - 2019-02-13 - Fix incorrect Sec-WebSocket-Protocol negotiation diff --git a/http-scm-0.rockspec b/http-0.4-0.rockspec similarity index 93% rename from http-scm-0.rockspec rename to http-0.4-0.rockspec index 5c9dafdc..4b00671e 100644 --- a/http-scm-0.rockspec +++ b/http-0.4-0.rockspec @@ -1,5 +1,5 @@ package = "http" -version = "scm-0" +version = "0.4-0" description = { summary = "HTTP library for Lua"; @@ -8,7 +8,8 @@ description = { } source = { - url = "git+https://github.com/daurnimator/lua-http.git"; + url = "https://github.com/daurnimator/lua-http/archive/v0.4.zip"; + dir = "lua-http-0.4"; } dependencies = { diff --git a/http/version.lua b/http/version.lua index 396dcf24..866a3895 100644 --- a/http/version.lua +++ b/http/version.lua @@ -5,5 +5,5 @@ It should be updated as part of the release process return { name = "lua-http"; - version = "scm"; + version = "0.4"; }