Skip to content

Commit

Permalink
Update changelog and dependencies for a 2.16.0 release (luvit#1081)
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 authored Jul 25, 2019
1 parent 15e37c7 commit 12e5afb
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 14 deletions.
13 changes: 13 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Changes in 2.16.0

- require: Match only past last . in file extensions (#1047) [Nameless]
- Add uncaughtException handler (#1048) [Python1320]
- http-codec: Fix http-codec failing occasionally during chunked decoding [Ryan Liptak]
- process: update process.env to use portable iterate [George Zhao]
- tls: Update to work with OpenSSL 1.1.x [George Zhao]
- net: fix bug in Socket:shutdown [George Zhao]
- http: only close socket when ServerResponse not need to keepAlive [George Zhao]
- http: make luvit not collectgarbage manually (#1071) [George Zhao]
- childprocess: Fix exec on Windows (#1077) [Ryan Liptak]
- tls: update ssl to support session reuse for TLSV1.3 (#1079) [George Zhao]

# Changes in 2.15.0

- examples: Fix http-download.lua statusCode (#1010) [eZethNesthrown]
Expand Down
2 changes: 1 addition & 1 deletion deps/childprocess.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
--]]
--[[lit-meta
name = "luvit/childprocess"
version = "2.1.1"
version = "2.1.2"
dependencies = {
"luvit/[email protected]",
"luvit/[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion deps/http.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.

--[[lit-meta
name = "luvit/http"
version = "2.1.3"
version = "2.1.4"
dependencies = {
"luvit/[email protected]",
"luvit/[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion deps/net.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.

--[[lit-meta
name = "luvit/net"
version = "2.0.2"
version = "2.0.3"
dependencies = {
"luvit/[email protected]",
"luvit/[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion deps/process.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.

--[[lit-meta
name = "luvit/process"
version = "2.1.0"
version = "2.1.1"
dependencies = {
"luvit/[email protected]",
"luvit/[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion deps/require.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
--]]
--[[lit-meta
name = "luvit/require"
version = "2.2.1"
version = "2.2.2"
homepage = "https://github.com/luvit/luvit/blob/master/deps/require.lua"
description = "Luvit's custom require system with relative requires and sane search paths."
tags = {"luvit", "require"}
Expand Down
2 changes: 1 addition & 1 deletion deps/tls/package.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
return {
name = "luvit/tls",
version = "2.2.0",
version = "2.3.0",
dependencies = {
"luvit/[email protected]",
"luvit/[email protected]",
Expand Down
16 changes: 8 additions & 8 deletions package.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
return {
name = "luvit/luvit",
version = "2.15.0",
version = "2.16.0",
luvi = {
version = "2.7.6",
flavor = "regular",
Expand All @@ -21,33 +21,33 @@ return {
},
dependencies = {
"luvit/[email protected]",
"luvit/[email protected].1",
"luvit/[email protected].2",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected].1",
"luvit/[email protected].1",
"luvit/[email protected].4",
"luvit/[email protected].3",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected].2",
"luvit/[email protected].3",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected].0",
"luvit/[email protected].1",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected].0",
"luvit/[email protected].2",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/tls@2.2.0",
"luvit/tls@2.3.0",
"luvit/[email protected]",
"luvit/[email protected]",
"luvit/[email protected]"
Expand Down

0 comments on commit 12e5afb

Please sign in to comment.