Skip to content

Commit e14ba4c

Browse files
committed
version bump
1 parent 205dafe commit e14ba4c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ Homepage: <http://leafo.net>
349349

350350
# Changelog
351351

352+
* 1.11.0 — 2020-03-26 - allow for TLS v1.2 when using LuaSec (Miles Elam)
352353
* 1.10.0 — 2019-04-15 - support luaossl for crypto functions, added better error when missing crypto library
353354
* 1.9.0 — 2018-04-02 - nginx pool name includes user, connection reports name as `pgmoon`
354355
* 1.8.0 — 2016-11-07 — Add cqueues support, SSL calling fix for Nginx cosocket (@thibaultCha)

pgmoon/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ do
77
rshift, lshift, band = _obj_0.rshift, _obj_0.lshift, _obj_0.band
88
end
99
local unpack = table.unpack or unpack
10-
local VERSION = "1.10.0"
10+
local VERSION = "1.11.0"
1111
local _len
1212
_len = function(thing, t)
1313
if t == nil then

pgmoon/init.moon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import rshift, lshift, band from require "bit"
44

55
unpack = table.unpack or unpack
66

7-
VERSION = "1.10.0"
7+
VERSION = "1.11.0"
88

99
_len = (thing, t=type(thing)) ->
1010
switch t

spec/pgmoon_spec.moon

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,11 @@ describe "pgmoon with server", ->
335335
drop table types_test
336336
]]
337337

338+
it "deserializes row types correctly #ddd", ->
339+
pg\query "select 1"
340+
pg\query "select row(1, 'hello', 5.999)"
341+
pg\query "select (1, 'hello', 5.999)"
342+
338343
describe "custom deserializer", ->
339344
it "deserializes big integer to string", ->
340345
assert pg\query [[

0 commit comments

Comments
 (0)