release 0.9.0

This commit is contained in:
Rhys van der Waerden 2015-11-02 14:54:38 +11:00
parent de5bfda2e4
commit 360ffc77d3
5 changed files with 762 additions and 750 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.6)</span>
Knex.js <span class="version">(0.9.0)</span>
</a>
<ul class="toc_section">
<li>&raquo; <a href="https://github.com/tgriesser/knex">GitHub Repository</a></li>
@ -45,6 +45,7 @@
Upgrading
</a>
<ul class="toc_section">
<li> <a href="#Upgrading-from0.8">0.8.x -> 0.9</a></li>
<li> <a href="#Upgrading-from0.7">0.7.x -> 0.8</a></li>
<li> <a href="#Upgrading-from0.6">0.6.x -> 0.7</a></li>
</ul>
@ -315,7 +316,7 @@
</p>
<h2>Latest Release: 0.8.6 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<h2>Latest Release: 0.9.0 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<p>
Current Develop &mdash;
@ -326,6 +327,7 @@
<h2 id="Upgrading">Upgrading</h2>
<h3 id="Upgrading-from0.7">Upgrading 0.8 -> 0.9</h3>
<h3 id="Upgrading-from0.7">Upgrading 0.7 -> 0.8</h3>
<p>
@ -2663,7 +2665,7 @@ $ npm test
<h2 id="changelog">Change Log</h2>
<p>
<b class="header">0.9.0</b> &mdash; <small><i>TBA</i></small><br />
<b class="header">0.9.0</b> &mdash; <small><i>Nov 2, 2015</i></small><br />
</p>
<ul>

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.6';
knex.VERSION = knex.__knex__ = '0.9.0';
// Hook up the "knex" object as an EventEmitter.
var ee = new EventEmitter();

View File

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

View File

@ -52,7 +52,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.6'
knex.VERSION = knex.__knex__ = '0.9.0'
// Hook up the "knex" object as an EventEmitter.
var ee = new EventEmitter()
@ -113,4 +113,4 @@ module.exports = function makeKnex(client) {
}
return knex
}
}