From 354c43220601b7dce028220f1f80787b7ccc2be5 Mon Sep 17 00:00:00 2001 From: Miles Richardson Date: Mon, 21 Mar 2022 16:36:00 +0000 Subject: [PATCH] Change `source.url` in `rockspec` to use `git+https://` GitHub deprecated usage of `git://` (unencrypted Git protocol) on March 15th, 2022. This commit backports the change to `v16.x` --- ...tp-0.16.1-0.rockspec => lua-resty-http-0.16.2-0.rockspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename lua-resty-http-0.16.1-0.rockspec => lua-resty-http-0.16.2-0.rockspec (84%) diff --git a/lua-resty-http-0.16.1-0.rockspec b/lua-resty-http-0.16.2-0.rockspec similarity index 84% rename from lua-resty-http-0.16.1-0.rockspec rename to lua-resty-http-0.16.2-0.rockspec index 22726ffa..081f11fd 100644 --- a/lua-resty-http-0.16.1-0.rockspec +++ b/lua-resty-http-0.16.2-0.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-http" -version = "0.16.1-0" +version = "0.16.2-0" source = { - url = "git://github.com/ledgetech/lua-resty-http", - tag = "v0.16.1" + url = "git+https://github.com/ledgetech/lua-resty-http", + tag = "v0.16.2" } description = { summary = "Lua HTTP client cosocket driver for OpenResty / ngx_lua.",