From ff1309a4882a8253df18d6a37985f004aec3f8a1 Mon Sep 17 00:00:00 2001 From: tokers Date: Thu, 18 Jul 2019 19:05:53 +0800 Subject: [PATCH] release: v0.7.3 --- CHANGELOG.markdown | 12 ++++++++++++ lib/resty/requests.lua | 2 +- ...1.rockspec => lua-resty-requests-0.7.3-1.rockspec | 6 +++--- 3 files changed, 16 insertions(+), 4 deletions(-) rename lua-resty-requests-0.7.2-1.rockspec => lua-resty-requests-0.7.3-1.rockspec (92%) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index df855ab..c3a5986 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,6 +1,8 @@ Table of Contents ================= +* [v0.7.3](#v0.7.3) +* [v0.7.2](#v0.7.2) * [v0.7.2](#v0.7.2) * [v0.7.1](#v0.7.1) * [v0.7](#v0.7) @@ -9,6 +11,16 @@ Table of Contents * [v0.4](#v0.4) * [v0.3](#v0.3) + +v0.7.3 +====== + +> Date: 2019.07.18 + +* bugfix: treat Expect header value case-insensitive. +* test: download Test::Nginx with the super user permission. +* feature: shortcut calling for requests APIs. + v0.7.2 ====== diff --git a/lib/resty/requests.lua b/lib/resty/requests.lua index 28b3e18..3a414b6 100644 --- a/lib/resty/requests.lua +++ b/lib/resty/requests.lua @@ -7,7 +7,7 @@ local session = require "resty.requests.session" local is_tab = util.is_tab local error = error -local _M = { _VERSION = "0.7.2" } +local _M = { _VERSION = "0.7.3" } local function request_shortcut(method, opts) diff --git a/lua-resty-requests-0.7.2-1.rockspec b/lua-resty-requests-0.7.3-1.rockspec similarity index 92% rename from lua-resty-requests-0.7.2-1.rockspec rename to lua-resty-requests-0.7.3-1.rockspec index 259877e..7e09e1c 100644 --- a/lua-resty-requests-0.7.2-1.rockspec +++ b/lua-resty-requests-0.7.3-1.rockspec @@ -1,9 +1,9 @@ package = "lua-resty-requests" -version = "0.7.2-1" +version = "0.7.3-1" source = { url = "git://github.com/tokers/lua-resty-requests", - tag = "v0.7.2", + tag = "v0.7.3", } description = { @@ -18,7 +18,7 @@ description = { dependencies = { "lua >= 5.1", - "lua-resty-socket == 1.0.1", + "lua-resty-socket == 1.0.0", } build = {