Skip to content

Commit 70bce55

Browse files
author
Gregg Van Hove
committed
Bump version to 2.9.1
1 parent 53529bd commit 70bce55

4 files changed

Lines changed: 19 additions & 4 deletions

File tree

lib/jasmine-core/jasmine.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2193,6 +2193,7 @@ getJasmineRequireObj().DelayedFunctionScheduler = function(j$) {
21932193
}
21942194

21952195
do {
2196+
deletedKeys = [];
21962197
var newCurrentTime = scheduledLookup.shift();
21972198
tickDate(newCurrentTime - currentTime);
21982199

@@ -2215,7 +2216,6 @@ getJasmineRequireObj().DelayedFunctionScheduler = function(j$) {
22152216
}
22162217
funcToRun.funcToCall.apply(null, funcToRun.params || []);
22172218
});
2218-
deletedKeys = [];
22192219
} while (scheduledLookup.length > 0 &&
22202220
// checking first if we're out of time prevents setTimeout(0)
22212221
// scheduled in a funcToRun from forcing an extra iteration
@@ -5538,5 +5538,5 @@ getJasmineRequireObj().UserContext = function(j$) {
55385538
};
55395539

55405540
getJasmineRequireObj().version = function() {
5541-
return '2.9.0';
5541+
return '2.9.1';
55425542
};

lib/jasmine-core/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
#
55
module Jasmine
66
module Core
7-
VERSION = "2.9.0"
7+
VERSION = "2.9.1"
88
end
99
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jasmine-core",
33
"license": "MIT",
4-
"version": "2.9.0",
4+
"version": "2.9.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/jasmine/jasmine.git"

release_notes/2.9.1.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Jasmine Core 2.9.1 Release Notes
2+
3+
## Summary
4+
5+
This is a hotfix release to fix a breaking change from the 2.9.0 release
6+
7+
## Changes
8+
9+
* Clear timeouts when starting to process a milli instead of at the end
10+
- Fixes #1482
11+
12+
13+
------
14+
15+
_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_

0 commit comments

Comments
 (0)