Skip to content

Commit

Permalink
Bump 1.3.7 version and 2016 copyright for a release + Build
Browse files Browse the repository at this point in the history
  • Loading branch information
bago committed Oct 14, 2016
1 parent b70eecd commit 5dbe621
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function(grunt) {
var banner = [
"<%= pkg.name %> v<%= pkg.version %>",
"The MIT License (MIT)",
"Copyright (c) 2015 <%= pkg.author %>"
"Copyright (c) 2016 <%= pkg.author %>"
].join("\n * ").trim();

grunt.initConfig({
Expand Down
17 changes: 15 additions & 2 deletions dist/ko-reactor.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
// Deep observer plugin for Knockout http://knockoutjs.com/
// (c) Ziad Jeeroburkhan
// License: MIT (http://www.opensource.org/licenses/mit-license.php)
// Version 1.3.6

// Version 1.3.7
; (function (factory) {
// CommonJS
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
factory(require('knockout'));
// AMD
} else if (typeof define === 'function' && define.amd) {
define(['knockout'], factory);
// Normal script tag
} else {
factory(window.ko);
}
}(function (ko) {
ko.subscribable.fn['watch'] = function (targetOrCallback, options, evaluatorCallback, context) {
/// <summary>
/// Track and manage changes within the chained observable down to any given level.
Expand Down Expand Up @@ -290,3 +301,5 @@ ko['watch'] = function (target, options, evaluatorCallback, context) {
}
};
};

}));
2 changes: 1 addition & 1 deletion dist/ko-reactor.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ko-reactor",
"author": "Ziad Jeeroburkhan",
"version": "1.3.6",
"version": "1.3.7",
"repository": {
"type": "git",
"url": "https://github.com/ZiadJ/knockoutjs-reactor.git"
Expand Down
2 changes: 1 addition & 1 deletion src/knockout.reactor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Deep observer plugin for Knockout http://knockoutjs.com/
// (c) Ziad Jeeroburkhan
// License: MIT (http://www.opensource.org/licenses/mit-license.php)
// Version 1.3.6
// Version 1.3.7
; (function (factory) {
// CommonJS
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
Expand Down

0 comments on commit 5dbe621

Please sign in to comment.