From f7d440d2df1d43b6cebe798d32a4e991cd5e2223 Mon Sep 17 00:00:00 2001 From: Tim Griesser Date: Tue, 25 Mar 2014 11:31:36 -0400 Subject: [PATCH] docs prep for release --- docs/assets/behavior.js | 4 ++-- docs/knex.html | 4 ++-- index.html | 15 +++++++++++++-- knex.js | 4 ++-- 4 files changed, 19 insertions(+), 8 deletions(-) diff --git a/docs/assets/behavior.js b/docs/assets/behavior.js index 159f59a7a..d3bd88977 100644 --- a/docs/assets/behavior.js +++ b/docs/assets/behavior.js @@ -621,8 +621,8 @@ f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3 "type": "heading", "data": { "level": 2, - "title": "Knex.js 0.5.10", - "slug": "knexjs-0510" + "title": "Knex.js 0.5.11", + "slug": "knexjs-0511" }, "depth": 2 } diff --git a/docs/knex.html b/docs/knex.html index 10dff9bd3..fe2fd49c6 100644 --- a/docs/knex.html +++ b/docs/knex.html @@ -1,4 +1,4 @@ -knex
knex.js

Knex.js 0.5.10

(c) 2013 Tim Griesser
+knex
knex.js

Knex.js 0.5.11

(c) 2013 Tim Griesser
 Knex may be freely distributed under the MIT license.
 For details and documentation:
 http://knexjs.org
@@ -53,7 +53,7 @@ rather than wait on an async load of a client library.

}; });

Method to run a new Raw query on the current client.

knex.raw = function(sql, bindings) { return new Raw(knex).query(sql, bindings); - };

Keep a reference to the current client.

knex.client = client;

Keep in sync with package.json

knex.VERSION = '0.5.10';

Runs a new transaction, taking a container and returning a promise + };

Keep a reference to the current client.

knex.client = client;

Keep in sync with package.json

knex.VERSION = '0.5.11';

Runs a new transaction, taking a container and returning a promise for when the transaction is resolved.

knex.transaction = function(container) { return new Transaction(knex).run(container); };

Attach each of the Migrate "interface" methods directly onto to knex.migrate namespace, e.g.: diff --git a/index.html b/index.html index dc44fca7e..3f91ed1b8 100644 --- a/index.html +++ b/index.html @@ -185,7 +185,7 @@