Skip to content

Commit 487aacf

Browse files
committed
release: v0.7
1 parent 2539481 commit 487aacf

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.markdown

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
Table of Contents
22
=================
33

4+
* [v0.7](#v0.7)
45
* [v0.6](#v0.6)
56
* [v0.5](#v0.5)
67
* [v0.4](#v0.4)
78
* [v0.3](#v0.3)
89

10+
v0.7
11+
====
12+
13+
> Date: 2018.12.03
14+
15+
This version refactored the logic about headers indexing, also fixed the relevant bug.
16+
17+
* refactored the request/response headers table logic.
18+
919
v0.6
1020
====
1121

dist.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = lua-resty-requests
22
abstract = Yet Another HTTP library for OpenResty
3-
version = 0.6
3+
version = 0.7
44
author = Alex Zhang(张超) [email protected], UPYUN Inc.
55
is_original = yes
66
license = 2bsd

lib/resty/requests.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
local util = require "resty.requests.util"
44
local session = require "resty.requests.session"
55

6-
local _M = { _VERSION = "0.6" }
6+
local _M = { _VERSION = "0.7" }
77

88

99
local function request(method, url, opts)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "lua-resty-requests"
2-
version = "0.6-1"
2+
version = "0.7-1"
33
source = {
44
url = "git://github.com/tokers/lua-resty-requests",
5-
tag = "v0.6",
5+
tag = "v0.7",
66
}
77
description = {
88
summary = "Yet Another HTTP library for OpenResty",

0 commit comments

Comments
 (0)