Prep for release

This commit is contained in:
Tim Griesser 2016-08-09 13:33:47 -04:00
parent 778016620c
commit b2bd2d902a
6 changed files with 415 additions and 421 deletions

View File

@ -1,7 +1,8 @@
# master - (unreleased)
# 0.11.10 - 9 Aug, 2016
- Added CHANGELOG.md for a [new documentation](https://github.com/knex/documentation) builder, #1615
- Added CHANGELOG.md for a [new documentation](https://github.com/knex/documentation) builder coming soon, #1615
- Minor documentation tweaks
- PG: Fix Uint8Array being considered undefined, #1601
- MSSQL: Make columnInfo schema dynamic, #1585

View File

@ -1,4 +1,4 @@
Copyright (c) 2013-2014 Tim Griesser
Copyright (c) 2013-present Tim Griesser
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
@ -19,4 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
OTHER DEALINGS IN THE SOFTWARE.

File diff suppressed because one or more lines are too long

View File

@ -32,7 +32,7 @@
<div id="sidebar" class="interface">
<a class="toc_title" href="#changelog">
Knex.js <span class="version">(0.11.9)</span>
Knex.js <span class="version">(0.11.10)</span>
</a>
<ul class="toc_section">
<li>&raquo; <a href="https://github.com/tgriesser/knex">GitHub Repository</a></li>
@ -337,7 +337,7 @@
</p>
<h2>Latest Release: 0.11.8 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<h2>Latest Release: 0.11.10 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<p>
Current Develop &mdash;
@ -3109,7 +3109,7 @@ $ npm test
<p>
<b class="header">My tests are failing because slow DB connection and short test timeouts! How to extend test timeouts?</b><br />
Sometimes, e.g. when running CI on travis, test suite's default timeout of 5 seconds might be too short. In such cases an alternative test timeout
Sometimes, e.g. when running CI on travis, test suite's default timeout of 5 seconds might be too short. In such cases an alternative test timeout
value in milliseconds can be specified using the <tt>KNEX_TEST_TIMEOUT</tt> environment variable.
</p>
<pre>

View File

@ -1,6 +1,6 @@
// Knex.js
// --------------
// (c) 2014 Tim Griesser
// (c) 2013-present Tim Griesser
// Knex may be freely distributed under the MIT license.
// For details and documentation:
// http://knexjs.org

View File

@ -99,6 +99,7 @@
"oracledb": false
},
"files": [
"CONTRIBUTING.md",
"README.md",
"src/*",
"lib/*",