mirror of
https://github.com/knex/knex.git
synced 2025-12-30 00:30:14 +00:00
release 0.9.0
This commit is contained in:
parent
de5bfda2e4
commit
360ffc77d3
1496
build/knex.js
1496
build/knex.js
File diff suppressed because it is too large
Load Diff
@ -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>» <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 —
|
||||
@ -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> — <small><i>TBA</i></small><br />
|
||||
<b class="header">0.9.0</b> — <small><i>Nov 2, 2015</i></small><br />
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
@ -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();
|
||||
|
||||
@ -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": {
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user