From 05fd57dba0ed9e20d188cfffc737fac2d478a5ce Mon Sep 17 00:00:00 2001 From: tokers Date: Tue, 9 Oct 2018 17:30:37 +0800 Subject: [PATCH] release: v0.4 --- CHANGELOG.markdown | 26 ++++++++++++++++++++++++++ lib/resty/requests.lua | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.markdown diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown new file mode 100644 index 0000000..1577072 --- /dev/null +++ b/CHANGELOG.markdown @@ -0,0 +1,26 @@ +Table of Contents +================= + +* [v0.4](#v0.4) +* [v0.3](#v0.3) + +v0.4 +==== + +> Date: 2018.10.09 + +This version supplemented more test cases and introduced the following +features. + +* feature: supported the test of Expect request header. +* feature: supported installation from LuaRocks. +* feature: intergrated with lua-resty-http2, can use the HTTP/2 in the plain connection, this is still experimental. + +v0.3 +==== + +> Date: 2018.06.18 + +The first release. + + diff --git a/lib/resty/requests.lua b/lib/resty/requests.lua index 4bbdd00..03a3a1e 100644 --- a/lib/resty/requests.lua +++ b/lib/resty/requests.lua @@ -3,7 +3,7 @@ local util = require "resty.requests.util" local session = require "resty.requests.session" -local _M = { _VERSION = "0.3" } +local _M = { _VERSION = "0.4" } local function request(method, url, opts)