Comparing version 4.2.0 to 4.2.2
{ | ||
"name": "squel", | ||
"version": "4.1.0", | ||
"version": "4.2.2", | ||
"main": "squel.js", | ||
@@ -5,0 +5,0 @@ "ignore": [ |
# Changelog for [squel](https://github.com/hiddentao/squel) | ||
## ??? (4.3.0) | ||
* Placeholder parameter character is now configurable | ||
* Guide docs now print results below code | ||
* Re-instituted CHANGELOG.md | ||
## 13 Nov 2015 (4.2.2) | ||
* Merged #191 | ||
## 30 Aug 2014 (3.8.1) | ||
@@ -102,2 +110,1 @@ * #90 - custom value handlers with primitives | ||
* Initial version. | ||
@@ -24,1 +24,14 @@ # Contribute to Squel | ||
## Release process | ||
To publish a new release: | ||
* Update version in `package.json` and `bower.json`. | ||
* Run `npm build` to rebuild the final JS output and run the tests. | ||
* Update `CHANGELOG.md` with the changes. | ||
* Git commit and push to Github. | ||
* Wait for [Travis CI build](http://travis-ci.org/hiddentao/squel) to succeed. | ||
* Create a git tag for the version number | ||
* Git push the tag to github. | ||
* Run `npm publish`. |
{ | ||
"name": "squel", | ||
"description": "SQL query string builder", | ||
"version": "4.2.0", | ||
"version": "4.2.2", | ||
"author": "Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/)", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
# squel - SQL query string builder | ||
[![Build Status](https://secure.travis-ci.org/hiddentao/squel.png?branch=master)](http://travis-ci.org/hiddentao/squel) [![NPM module](https://badge.fury.io/js/squel.png)](https://badge.fury.io/js/squel) | ||
[![Build Status](https://secure.travis-ci.org/hiddentao/squel.png?branch=master)](http://travis-ci.org/hiddentao/squel) [![NPM module](https://badge.fury.io/js/squel.png)](https://badge.fury.io/js/squel) [![Join the chat at https://gitter.im/hiddentao/squel](https://img.shields.io/badge/gitter-join%20chat-blue.svg)](https://gitter.im/hiddentao/squel) | ||
@@ -207,3 +207,3 @@ A flexible and powerful SQL query string builder for Javascript. | ||
squel.registerValueHandler(Date, function(date) { | ||
return date.getFullYear() + '/' + date.getMonth() + '/' + date.getDate(); | ||
return date.getFullYear() + '/' + (date.getMonth() + 1) + '/' + date.getDate(); | ||
}); | ||
@@ -216,3 +216,3 @@ | ||
// UPDATE students SET start_date = '2013/5/1' | ||
// UPDATE students SET start_date = '2013/6/1' | ||
``` | ||
@@ -219,0 +219,0 @@ |
Sorry, the diff of this file is too big to display
107435
2508