Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rhys-vdw committed May 6, 2016
1 parent f42be02 commit d7ffaed
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 14 additions & 6 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.11.0)</span>
Knex.js <span class="version">(0.11.1)</span>
</a>
<ul class="toc_section">
<li>&raquo; <a href="https://github.com/tgriesser/knex">GitHub Repository</a></li>
Expand Down Expand Up @@ -336,7 +336,7 @@
</p>


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

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

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

<p>
<b class="header">0.11.1</b> &mdash; <small><i>6 May, 2016</i></small><br />
</p>

<ul>
<li>Fix error in CLI command `migrate:make`. #1386</li>
</ul>

<p>
<b class="header">0.11.0</b> &mdash; <small><i>5 May, 2016</i></small><br />
</p>
Expand All @@ -3065,7 +3073,7 @@ <h2 id="changelog">Change Log</h2>
</li>
<li>Add <tt>query-response</tt> event. #1231</li>
<li>Correct behaviour of sibling nested transactions. #1226</li>
<li>Support <tt>RETURNING</tt> with <tt>UPDATE</tt>. (Oracle) #1253<li>
<li>Support <tt>RETURNING</tt> with <tt>UPDATE</tt>. (Oracle) #1253</li>
<li>
Throwing callbacks from transactions automatically rolls them back.
#1257
Expand All @@ -3076,13 +3084,13 @@ <h2 id="changelog">Change Log</h2>
<li>
<tt>timestamps</tt> accepts an argument to set `NOT NULL` and default to current timestamp.
</li>
<li>Add <tt>TableBuilder#inherits</tt> for PostgreSQL. #601<li>
<li>Wrap index names. #1289<li>
<li>Add <tt>TableBuilder#inherits</tt> for PostgreSQL. #601</li>
<li>Wrap index names. #1289</li>
<li>Restore coffeescript knexfiles and configurations. #1292</li>
<li>
Add <tt>andWhereBetween</tt> and <tt>andWhereNotBetween</tt> #1132
</li>
<li> Fix <tt>valueForUndefined</tt> failure. #1269<li>
<li> Fix <tt>valueForUndefined</tt> failure. #1269</li>
<li>
<tt>renameColumn</tt> no longer drops default value or nullability.
#1326
Expand Down
2 changes: 1 addition & 1 deletion src/util/make-knex.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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.11.0'
knex.VERSION = knex.__knex__ = '0.11.1'

// Hook up the "knex" object as an EventEmitter.
var ee = new EventEmitter()
Expand Down

0 comments on commit d7ffaed

Please sign in to comment.