Skip to content

Commit

Permalink
Fix connect alias in net module, bump to 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Apr 7, 2015
1 parent 886837c commit 9d4abc1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
* Changes between 2.0.4 and 2.0.5

* Fix `connect` alias in net module. [Tim Caswell]

* Changes between 2.0.3 and 2.0.4

* Bump lit to 1.0.3
Expand Down
4 changes: 2 additions & 2 deletions deps/net.lua
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
--]]
exports.name = "luvit/net"
exports.version = "1.0.0"
exports.version = "1.0.1"
local uv = require('uv')
local timer = require('timer')
Expand Down Expand Up @@ -334,7 +334,7 @@ exports.createConnection = function(port, ... --[[ host, cb --]])
return sock
end
exports.create = exports.createConnection
exports.connect = exports.createConnection
exports.createServer = function(options, connectionListener)
local server = Server:new()
Expand Down
4 changes: 2 additions & 2 deletions package.lua
@@ -1,6 +1,6 @@
return {
name = "luvit/luvit",
version = "2.0.4",
version = "2.0.5",
dependencies = {
"luvit/buffer@1.0.0",
"luvit/childprocess@1.0.3",
Expand All @@ -16,7 +16,7 @@ return {
"luvit/https@1.0.0",
"luvit/json@1.0.0",
"luvit/los@1.0.0",
"luvit/net@1.0.0",
"luvit/net@1.0.1",
"luvit/path@1.0.0",
"luvit/pretty-print@1.0.0",
"luvit/process@1.0.2",
Expand Down

0 comments on commit 9d4abc1

Please sign in to comment.