Bump version to 3.10.0
This commit is contained in:
@@ -10111,5 +10111,5 @@ getJasmineRequireObj().UserContext = function(j$) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
getJasmineRequireObj().version = function() {
|
getJasmineRequireObj().version = function() {
|
||||||
return '3.9.0';
|
return '3.10.0';
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,6 +4,6 @@
|
|||||||
#
|
#
|
||||||
module Jasmine
|
module Jasmine
|
||||||
module Core
|
module Core
|
||||||
VERSION = "3.9.0"
|
VERSION = "3.10.0"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "jasmine-core",
|
"name": "jasmine-core",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "3.9.0",
|
"version": "3.10.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/jasmine/jasmine.git"
|
"url": "https://github.com/jasmine/jasmine.git"
|
||||||
|
|||||||
@@ -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)_
|
||||||
Reference in New Issue
Block a user