Skip to content

Commit 5dbe621

Browse files
committed
Bump 1.3.7 version and 2016 copyright for a release + Build
1 parent b70eecd commit 5dbe621

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = function(grunt) {
88
var banner = [
99
"<%= pkg.name %> v<%= pkg.version %>",
1010
"The MIT License (MIT)",
11-
"Copyright (c) 2015 <%= pkg.author %>"
11+
"Copyright (c) 2016 <%= pkg.author %>"
1212
].join("\n * ").trim();
1313

1414
grunt.initConfig({

dist/ko-reactor.js

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
// Deep observer plugin for Knockout http://knockoutjs.com/
22
// (c) Ziad Jeeroburkhan
33
// License: MIT (http://www.opensource.org/licenses/mit-license.php)
4-
// Version 1.3.6
5-
4+
// Version 1.3.7
5+
; (function (factory) {
6+
// CommonJS
7+
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
8+
factory(require('knockout'));
9+
// AMD
10+
} else if (typeof define === 'function' && define.amd) {
11+
define(['knockout'], factory);
12+
// Normal script tag
13+
} else {
14+
factory(window.ko);
15+
}
16+
}(function (ko) {
617
ko.subscribable.fn['watch'] = function (targetOrCallback, options, evaluatorCallback, context) {
718
/// <summary>
819
/// Track and manage changes within the chained observable down to any given level.
@@ -290,3 +301,5 @@ ko['watch'] = function (target, options, evaluatorCallback, context) {
290301
}
291302
};
292303
};
304+
305+
}));

dist/ko-reactor.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ko-reactor",
33
"author": "Ziad Jeeroburkhan",
4-
"version": "1.3.6",
4+
"version": "1.3.7",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/ZiadJ/knockoutjs-reactor.git"

src/knockout.reactor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Deep observer plugin for Knockout http://knockoutjs.com/
22
// (c) Ziad Jeeroburkhan
33
// License: MIT (http://www.opensource.org/licenses/mit-license.php)
4-
// Version 1.3.6
4+
// Version 1.3.7
55
; (function (factory) {
66
// CommonJS
77
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {

0 commit comments

Comments
 (0)