diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 3140d7c2..86d7ba37 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -10111,5 +10111,5 @@ getJasmineRequireObj().UserContext = function(j$) { }; getJasmineRequireObj().version = function() { - return '3.9.0'; + return '3.10.0'; }; diff --git a/lib/jasmine-core/version.rb b/lib/jasmine-core/version.rb index ccee40c5..8d69fe3f 100644 --- a/lib/jasmine-core/version.rb +++ b/lib/jasmine-core/version.rb @@ -4,6 +4,6 @@ # module Jasmine module Core - VERSION = "3.9.0" + VERSION = "3.10.0" end end diff --git a/package.json b/package.json index 84dd9372..c81c63eb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jasmine-core", "license": "MIT", - "version": "3.9.0", + "version": "3.10.0", "repository": { "type": "git", "url": "https://github.com/jasmine/jasmine.git" diff --git a/release_notes/3.10.0.md b/release_notes/3.10.0.md new file mode 100644 index 00000000..8bc1491a --- /dev/null +++ b/release_notes/3.10.0.md @@ -0,0 +1,44 @@ +# Jasmine Core 3.10 Release Notes + +## New features and bug fixes + +* Added support for running Jasmine multiple times + * If the env is configured with `autoCleanClosures: false`, then it can be + executed repeatedly. + * Merges #1934 from @nicojs + * Fixes #1925 + +* Improved error message when an async expectation occurs after the spec + finishes + * Merges #1937 from @AndreWillomitzer + * Fixes #1854 + +* Reject timeout values that are too large for setTimeout + * See #1930 + +* Don't immediately move to the next queueable fn on async error + + This allows assertion failures and other errors that occur after the async + error to be routed to the correct spec/suite. + +* Added a stringContaining asymmetric equality tester + * Fixes #1923. + +* The jasmine-core Ruby gem now prints a deprecation message when loaded unless + the SUPPRESS_JASMINE_DEPRECATION environment variable is set. + + +## Documentation updates + +* Added discussion of max timeout value to jsdocs + * Merges #1931 from @trusktr + +* Added missing @since annotations + +* Improved jsdocs for asymmetric equality testers + +* Added a deprecation notice to the jasmine-core Ruby gem's description + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_