Skip to content

Commit

Permalink
Checking in changes prior to tagging version "0.6.5".
Browse files Browse the repository at this point in the history
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
  • Loading branch information
clkao committed Feb 2, 2014
1 parent 17298eb commit 1f2623c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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": "*",
Expand Down
8 changes: 4 additions & 4 deletions package.ls
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author:
email: '[email protected]'
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:
Expand All @@ -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: \*
Expand Down
2 changes: 1 addition & 1 deletion test/basics.ls
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions test/operator.ls
Original file line number Diff line number Diff line change
Expand Up @@ -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' ]
Expand All @@ -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] }), '[email protected]' ]
Expand Down

0 comments on commit 1f2623c

Please sign in to comment.