Skip to content

Commit

Permalink
release 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser committed Oct 1, 2014
1 parent 239f906 commit 875f0a6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions browser/knex.js
@@ -1,5 +1,5 @@
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.Knex=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
// Knex.js 0.7.1
// Knex.js 0.7.2
// --------------

'use strict';
Expand Down Expand Up @@ -76,7 +76,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.1';
knex.VERSION = knex.__knex__ = '0.7.2';
knex.raw = function(sql, bindings) {
var raw = new client.Raw(sql, bindings);
if (config.__transactor__) raw.transacting(config.__transactor__);
Expand Down Expand Up @@ -585,10 +585,10 @@ Client_MySQL.prototype.acquireRawConnection = function() {
var client = this;
var connection = mysql.createConnection(this.connectionSettings);
return new Promise(function(resolver, rejecter) {
connection.on('error', connectionErrorHandler.bind(null, client, connection));
connection.on('end', connectionErrorHandler.bind(null, client, connection));
connection.connect(function(err) {
if (err) return rejecter(err);
connection.on('error', connectionErrorHandler.bind(null, client, connection));
connection.on('end', connectionErrorHandler.bind(null, client, connection));
resolver(connection);
});
});
Expand Down
4 changes: 2 additions & 2 deletions browser/websql.js
@@ -1,5 +1,5 @@
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.Knex=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
// Knex.js 0.7.1
// Knex.js 0.7.2
// --------------

'use strict';
Expand Down Expand Up @@ -76,7 +76,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.1';
knex.VERSION = knex.__knex__ = '0.7.2';
knex.raw = function(sql, bindings) {
var raw = new client.Raw(sql, bindings);
if (config.__transactor__) raw.transacting(config.__transactor__);
Expand Down
6 changes: 3 additions & 3 deletions index.html
Expand Up @@ -32,7 +32,7 @@
<div id="sidebar" class="interface">

<a class="toc_title" href="#">
Knex.js <span class="version">(0.7.1)</span>
Knex.js <span class="version">(0.7.2)</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.1 - <span class="small"><a href="#changelog">Change Log</a></span></h2>
<h2>Latest Release: 0.7.2 - <span class="small"><a href="#changelog">Change Log</a></span></h2>

<p>
Current Develop &mdash;
Expand Down Expand Up @@ -2382,7 +2382,7 @@ <h2 id="faq">F.A.Q.</h2>
<h2 id="changelog">Change Log</h2>

<p>
<b class="header">0.7.1</b> &mdash; <small><i>Oct 1, 2014</i></small><br />
<b class="header">0.7.1 &amp; 0.7.2</b> &mdash; <small><i>Oct 1, 2014</i></small><br />
</p>

<ul>
Expand Down
4 changes: 2 additions & 2 deletions knex.js
@@ -1,4 +1,4 @@
// Knex.js 0.7.1
// Knex.js 0.7.2
// --------------

'use strict';
Expand Down Expand Up @@ -75,7 +75,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.1';
knex.VERSION = knex.__knex__ = '0.7.2';
knex.raw = function(sql, bindings) {
var raw = new client.Raw(sql, bindings);
if (config.__transactor__) raw.transacting(config.__transactor__);
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "knex",
"version": "0.7.1",
"version": "0.7.2",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"directories": {
Expand Down

0 comments on commit 875f0a6

Please sign in to comment.