From 1f2623cae3b57367e3644a2d8d0f8080f34d2448 Mon Sep 17 00:00:00 2001 From: Chia-liang Kao Date: Mon, 3 Feb 2014 02:25:10 +0800 Subject: [PATCH] Checking in changes prior to tagging version "0.6.5". Changelog diff: diff --git a/History.md b/History.md index 0123ea0..0aba874 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,6 @@ +0.6.5 / 2014-02-03 + * Export `util`, which comes with the define-schema helper + 0.6.4 / 2014-01-05 * Fix plv8x not bootstrapped when client flag is specified --- History.md | 3 +++ package.json | 8 ++++---- package.ls | 8 ++++---- test/basics.ls | 2 +- test/operator.ls | 4 ++-- 5 files changed, 14 insertions(+), 11 deletions(-) diff --git a/History.md b/History.md index 0123ea0..0aba874 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,6 @@ +0.6.5 / 2014-02-03 + * Export `util`, which comes with the define-schema helper + 0.6.4 / 2014-01-05 * Fix plv8x not bootstrapped when client flag is specified diff --git a/package.json b/package.json index 86bd24d..872c417 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "name": "plv8x", "description": "Use JavaScript expressions and modules in PostgreSQL plv8", - "version": "0.6.4", + "version": "0.6.5", "keywords": [ "postgres", "pg", @@ -33,11 +33,11 @@ "async": "0.2.x", "optimist": "0.6.x", "pg": "2.8.x", - "resolve": "0.5.x", + "resolve": "0.6.x", "one": "2.5.x", "tmp": "0.0.x", - "LiveScript": "1.1.x", - "js-yaml": "*" + "LiveScript": "1.2.0", + "js-yaml": "3.0.x" }, "devDependencies": { "mocha": "*", diff --git a/package.ls b/package.ls index 25f728c..a007a61 100755 --- a/package.ls +++ b/package.ls @@ -4,7 +4,7 @@ author: email: 'clkao@clkao.org' name: 'plv8x' description: 'Use JavaScript expressions and modules in PostgreSQL plv8' -version: '0.6.4' +version: '0.6.5' keywords: <[postgres pg database plv8]> main: \lib/index.js bin: @@ -27,12 +27,12 @@ dependencies: async: \0.2.x optimist: \0.6.x pg: \2.8.x - resolve: \0.5.x + resolve: \0.6.x one: \2.5.x tmp: '0.0.x' - LiveScript: \1.1.x + LiveScript: \1.2.0 # 'coffee-script': \* - 'js-yaml': \* + 'js-yaml': \3.0.x devDependencies: mocha: \* chai: \* diff --git a/test/basics.ls b/test/basics.ls index 167f492..1898c91 100644 --- a/test/basics.ls +++ b/test/basics.ls @@ -42,7 +42,7 @@ describe 'db', -> ``it`` err, res <- plx.conn.query "select plv8x.eval($1) as ret", ["plv8x_require('LiveScript').VERSION"] expect(err).to.be.a('null'); {ret} = res.rows.0 - expect ret .to.equal \1.1.1 + expect ret .to.equal \1.2.0 done! .. 'lscompile', (done) -> plx.conn.query plv8x._mk_func \plv8x.lscompile {str: \text, args: \plv8x.json} \text plv8x.plv8x-lift "LiveScript", "compile" diff --git a/test/operator.ls b/test/operator.ls index 092b442..810d11e 100644 --- a/test/operator.ls +++ b/test/operator.ls @@ -31,7 +31,7 @@ describe 'db', -> ``it`` <- plx.import-bundle \LiveScript './node_modules/LiveScript/package.json' rows <- plx.query "select |> $1 as ret" ['~> plv8x.require "LiveScript" .VERSION'] console.log rows - expect rows.0.ret .to.equal \1.1.1 + expect rows.0.ret .to.equal \1.2.0 done! .. 'livescript data |> ->', (done) -> rows <- plx.query "select $1 |> $2 as ret", [ JSON.stringify({ hello: [2, 3, 4] }), '-> @hello.1' ] @@ -45,7 +45,7 @@ describe 'db', -> ``it`` <- plx.import-bundle \LiveScript './node_modules/LiveScript/package.json' rows <- plx.query "select ~> $1 as ret" ['plv8x.require "LiveScript" .VERSION'] console.log rows - expect rows.0.ret .to.equal \1.1.1 + expect rows.0.ret .to.equal \1.2.0 done! .. 'livescript data ~>', (done) -> rows <- plx.query "select $1 ~> $2 as ret", [ JSON.stringify({ hello: [2, 3, 4] }), '-@hello.1' ]