Skip to content

Commit

Permalink
Prepare 1.3.8 release with KO 3.4.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bago committed Nov 8, 2016
1 parent 49ecc7a commit 87fa4c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions dist/ko-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.7
// Version 1.3.8
; (function (factory) {
// CommonJS
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
Expand Down Expand Up @@ -206,7 +206,8 @@ ko['watch'] = function (target, options, evaluatorCallback, context) {
case "3.2.0": subscriptionsField = 'M'; break;
case "3.3.0": subscriptionsField = 'G'; break;
case "3.4.0": subscriptionsField = 'K'; break;
default: throw "Unsupported Knockout version. Only v3.0.0 to v3.4.0 are supported when minified. Current version is " + ko.version;
case "3.4.1": subscriptionsField = 'K'; break;
default: throw "Unsupported Knockout version. Only v3.0.0 to v3.4.1 are supported when minified. Current version is " + ko.version;
}

function disposeWatcher(child) {
Expand Down
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.7",
"version": "1.3.8",
"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.7
// Version 1.3.8
; (function (factory) {
// CommonJS
if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
Expand Down

0 comments on commit 87fa4c6

Please sign in to comment.