Skip to content

Commit

Permalink
Prep of 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser committed Mar 10, 2015
1 parent 1411f23 commit d6a66c1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<div id="sidebar" class="interface">

<a class="toc_title" href="#">
Knex.js <span class="version">(0.7.4)</span>
Knex.js <span class="version">(0.7.5)</span>
</a>
<ul class="toc_section">
<li>&raquo; <a href="https://github.com/tgriesser/knex">GitHub Repository</a></li>
Expand Down Expand Up @@ -308,7 +308,7 @@
</p>


<h2>Latest Release: 0.7.4 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<h2>Latest Release: 0.7.5 - <span class="small"><a href="#changelog">Change Log</a></span></h2>

<p>
Current Develop &mdash;
Expand Down Expand Up @@ -2442,6 +2442,14 @@ <h2 id="faq">F.A.Q.</h2>

<h2 id="changelog">Change Log</h2>

<p>
<b class="header">0.7.5</b> &mdash; <small><i>Mar 9, 2015</i></small><br />
</p>

<ul>
<li>Fix bug in validateMigrationList, (#697).</li>
</ul>

<p>
<b class="header">0.7.4</b> &mdash; <small><i>Feb 25, 2015</i></small><br />
</p>
Expand Down
4 changes: 2 additions & 2 deletions knex.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Knex.js 0.7.4
// Knex.js 0.7.5
// --------------

'use strict';
Expand Down Expand Up @@ -79,7 +79,7 @@ Knex.initialize = function(config) {

// 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.7.4';
knex.VERSION = knex.__knex__ = '0.7.5';
knex.raw = function(sql, bindings) {
var raw = new client.Raw(sql, bindings);
if (config.__transactor__) raw.transacting(config.__transactor__);
Expand Down

0 comments on commit d6a66c1

Please sign in to comment.