Skip to content

Commit

Permalink
Bump version to 2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregg Van Hove committed Jan 20, 2018
1 parent 53529bd commit 70bce55
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/jasmine-core/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -2193,6 +2193,7 @@ getJasmineRequireObj().DelayedFunctionScheduler = function(j$) {
}

do {
deletedKeys = [];
var newCurrentTime = scheduledLookup.shift();
tickDate(newCurrentTime - currentTime);

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

getJasmineRequireObj().version = function() {
return '2.9.0';
return '2.9.1';
};
2 changes: 1 addition & 1 deletion lib/jasmine-core/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
#
module Jasmine
module Core
VERSION = "2.9.0"
VERSION = "2.9.1"
end
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jasmine-core",
"license": "MIT",
"version": "2.9.0",
"version": "2.9.1",
"repository": {
"type": "git",
"url": "https://github.com/jasmine/jasmine.git"
Expand Down
15 changes: 15 additions & 0 deletions release_notes/2.9.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Jasmine Core 2.9.1 Release Notes

## Summary

This is a hotfix release to fix a breaking change from the 2.9.0 release

## Changes

* Clear timeouts when starting to process a milli instead of at the end
- Fixes #1482


------

_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_

0 comments on commit 70bce55

Please sign in to comment.