Skip to content

Commit

Permalink
add release notes and standalone dist for 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slackersoft committed Nov 15, 2014
1 parent 97ab0cb commit 25c546a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
Binary file added dist/jasmine-standalone-2.1.1.zip
Binary file not shown.
5 changes: 4 additions & 1 deletion lib/jasmine-core/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -2903,5 +2906,5 @@ getJasmineRequireObj().interface = function(jasmine, env) {
};

getJasmineRequireObj().version = function() {
return '2.1.0';
return '2.1.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.1.0"
VERSION = "2.1.1"
end
end
14 changes: 14 additions & 0 deletions release_notes/2.1.1.md
Original file line number Diff line number Diff line change
@@ -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)_

0 comments on commit 25c546a

Please sign in to comment.