diff --git a/dist/jasmine-standalone-2.1.1.zip b/dist/jasmine-standalone-2.1.1.zip new file mode 100644 index 00000000..f9333d99 Binary files /dev/null and b/dist/jasmine-standalone-2.1.1.zip differ diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 7e74b9f6..7da2cc3f 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -574,6 +574,9 @@ getJasmineRequireObj().Env = function(j$) { id: getNextSuiteId(), description: 'Jasmine__TopLevel__Suite', queueRunner: queueRunnerFactory, + onStart: function(suite) { + reporter.suiteStarted(suite.result); + }, resultCallback: function(attrs) { reporter.suiteDone(attrs); } @@ -2903,5 +2906,5 @@ getJasmineRequireObj().interface = function(jasmine, env) { }; getJasmineRequireObj().version = function() { - return '2.1.0'; + return '2.1.1'; }; diff --git a/lib/jasmine-core/version.rb b/lib/jasmine-core/version.rb index 23a1de7b..a0f524a5 100644 --- a/lib/jasmine-core/version.rb +++ b/lib/jasmine-core/version.rb @@ -4,6 +4,6 @@ # module Jasmine module Core - VERSION = "2.1.0" + VERSION = "2.1.1" end end diff --git a/release_notes/2.1.1.md b/release_notes/2.1.1.md new file mode 100644 index 00000000..7171c540 --- /dev/null +++ b/release_notes/2.1.1.md @@ -0,0 +1,14 @@ +# Jasmine Core 2.1.1 Release Notes + +## Summary + +This is a hotfix release of jasmine core to fix a breaking change with events emitted by the top-level suite + +## Issues + +- Top-level suite triggers suiteStarted and suiteEnd to be consistent + - Fixes [#706](http://github.com/pivotal/jasmine/issues/706) + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_