Skip to content

Commit d4159e1

Browse files
committed
0.6.5
1 parent 5bcdfd5 commit d4159e1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.6.5 / 2015-08-27
2+
==================
3+
* Fixed a bug in `util.merge()`
4+
15
0.6.4 / 2015-07-09
26
==================
37
* Prevent `JSON.parse()` crash when the Discogs API returns HTML instead of json (maintainance mode)

lib/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ util.escape = function(str){
5151
* @returns {object}
5252
*/
5353

54-
util.merge = function(target, source){
54+
util.merge = function merge(target, source){
5555
for(var key in source){
5656
if(source[key] && (typeof source[key] === 'object')){
5757
target[key] = merge((Array.isArray(source[key]) ? [] : {}), source[key]);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "disconnect",
33
"description": "A full featured Discogs API v2.0 client library",
4-
"version": "0.6.4",
4+
"version": "0.6.5",
55
"keywords": ["discogs", "api", "client", "oauth"],
66
"homepage": "https://github.com/bartve/disconnect",
77
"bugs": "https://github.com/bartve/disconnect/issues",

0 commit comments

Comments
 (0)