release 0.8.2

This commit is contained in:
Tim Griesser 2015-05-01 14:55:53 -04:00
parent d4ddd2a91c
commit 2ed591dc06
5 changed files with 858 additions and 849 deletions

File diff suppressed because it is too large Load Diff

View File

@ -32,7 +32,7 @@
<div id="sidebar" class="interface">
<a class="toc_title" href="#">
Knex.js <span class="version">(0.8.1)</span>
Knex.js <span class="version">(0.8.2)</span>
</a>
<ul class="toc_section">
<li>&raquo; <a href="https://github.com/tgriesser/knex">GitHub Repository</a></li>
@ -309,7 +309,7 @@
</p>
<h2>Latest Release: 0.8.1 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<h2>Latest Release: 0.8.2 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<p>
Current Develop &mdash;
@ -2502,6 +2502,14 @@ $ npm test
<h2 id="changelog">Change Log</h2>
<p>
<b class="header">0.8.2</b> &mdash; <small><i>May 1, 2015</i></small><br />
</p>
<ul>
<li>Fix regression in using query string in connection config.</li>
</ul>
<p>
<b class="header">0.8.1</b> &mdash; <small><i>May 1, 2015</i></small><br />
</p>

View File

@ -53,7 +53,7 @@ module.exports = function makeKnex(client) {
// The `__knex__` is used if you need to duck-type check whether this
// is a knex builder, without a full on `instanceof` check.
knex.VERSION = knex.__knex__ = '0.8.1'
knex.VERSION = knex.__knex__ = '0.8.2'
// Hook up the "knex" object as an EventEmitter.
var ee = new EventEmitter()

View File

@ -1,6 +1,6 @@
{
"name": "knex",
"version": "0.8.1",
"version": "0.8.2",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"dependencies": {

View File

@ -1,3 +1,4 @@
'use strict';
var knex = require('../../lib/index');
var test = require('tape')