Skip to content

Commit

Permalink
Merge branch '0.12.x'
Browse files Browse the repository at this point in the history
* 0.12.x:
  release 0.12.5
  Update changelog
  include scripts in npm package (#1737)
  • Loading branch information
tgriesser committed Oct 12, 2016
2 parents 6500b2f + fe0b71f commit 0949ed3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,8 @@
# Master (Unreleased)
- Add more having* methods / join clause on* methods #1674

# 0.12.4 - 12 Oct, 2016
# 0.12.5 - 12 Oct, 2016
- Fix broken 0.12.4 build (removed from npm)
- Fix #1733, #920, incorrect postgres array bindings

# 0.12.3 - 9 Oct, 2016
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "knex",
"version": "0.12.4",
"version": "0.12.5",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -46,7 +46,7 @@ Object.defineProperties(Knex, {
'Knex.VERSION is deprecated, you can get the module version' +
"by running require('knex/package').version"
)
return '0.12.2'
return '0.12.5'
}
},
Promise: {
Expand Down
2 changes: 1 addition & 1 deletion src/util/make-knex.js
Expand Up @@ -72,7 +72,7 @@ export default function makeKnex(client) {

knex.client = client

const VERSION = '0.12.2'
const VERSION = '0.12.5'

Object.defineProperties(knex, {

Expand Down

0 comments on commit 0949ed3

Please sign in to comment.