mirror of
https://github.com/knex/knex.git
synced 2025-12-27 15:08:47 +00:00
release 0.8.2
This commit is contained in:
parent
d4ddd2a91c
commit
2ed591dc06
1690
build/knex.js
1690
build/knex.js
File diff suppressed because it is too large
Load Diff
12
index.html
12
index.html
@ -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>» <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 —
|
||||
@ -2502,6 +2502,14 @@ $ npm test
|
||||
|
||||
<h2 id="changelog">Change Log</h2>
|
||||
|
||||
<p>
|
||||
<b class="header">0.8.2</b> — <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> — <small><i>May 1, 2015</i></small><br />
|
||||
</p>
|
||||
|
||||
@ -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()
|
||||
|
||||
@ -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": {
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
'use strict';
|
||||
|
||||
var knex = require('../../lib/index');
|
||||
var test = require('tape')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user