Skip to content

Commit 8841c62

Browse files
committed
Release v0.4
1 parent 8194df9 commit 8841c62

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

NEWS

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
0.4 - 2021-02-06
2+
3+
- Support multiple elliptic curves under OpenSSL 1.1.1+ (#150)
4+
- Improve support for Lua 5.4 (not longer require bit library to be installed) (#180)
5+
- Ignore delayed RST_STREAM frames in HTTP 2 (#145)
6+
7+
18
0.3 - 2019-02-13
29

310
- Fix incorrect Sec-WebSocket-Protocol negotiation

http-scm-0.rockspec renamed to http-0.4-0.rockspec

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package = "http"
2-
version = "scm-0"
2+
version = "0.4-0"
33

44
description = {
55
summary = "HTTP library for Lua";
@@ -8,7 +8,8 @@ description = {
88
}
99

1010
source = {
11-
url = "git+https://github.com/daurnimator/lua-http.git";
11+
url = "https://github.com/daurnimator/lua-http/archive/v0.4.zip";
12+
dir = "lua-http-0.4";
1213
}
1314

1415
dependencies = {

http/version.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ It should be updated as part of the release process
55

66
return {
77
name = "lua-http";
8-
version = "scm";
8+
version = "0.4";
99
}

0 commit comments

Comments
 (0)