version bump to 2.3.0

This commit is contained in:
Gregg Van Hove
2015-04-28 10:13:42 -07:00
parent 4173a4089c
commit 5ea24a8448
6 changed files with 86 additions and 7 deletions

View File

@@ -3189,7 +3189,7 @@ getJasmineRequireObj().toThrowError = function(j$) {
return expected === null && errorType === null;
},
matches: function(error) {
return (errorType === null || error.constructor === errorType) &&
return (errorType === null || error instanceof errorType) &&
(expected === null || messageMatch(error.message));
}
};
@@ -3294,5 +3294,5 @@ getJasmineRequireObj().interface = function(jasmine, env) {
};
getJasmineRequireObj().version = function() {
return '2.2.1';
return '2.3.0';
};

View File

@@ -4,6 +4,6 @@
#
module Jasmine
module Core
VERSION = "2.2.1"
VERSION = "2.3.0"
end
end