From b3ccd4312cc96671d0d3d0d951a87b82dc15d7ad Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Thu, 25 Oct 2018 09:47:09 -0700 Subject: [PATCH] Bump version to 3.3.0 --- lib/jasmine-core/jasmine.js | 2 +- lib/jasmine-core/version.rb | 2 +- package.json | 2 +- release_notes/3.3.0.md | 47 +++++++++++++++++++++++++++++++++++++ 4 files changed, 50 insertions(+), 3 deletions(-) create mode 100644 release_notes/3.3.0.md diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index b1782efd..5e8f1678 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -6968,5 +6968,5 @@ getJasmineRequireObj().UserContext = function(j$) { }; getJasmineRequireObj().version = function() { - return '3.2.1'; + return '3.3.0'; }; diff --git a/lib/jasmine-core/version.rb b/lib/jasmine-core/version.rb index 87b6585b..3f8f2931 100644 --- a/lib/jasmine-core/version.rb +++ b/lib/jasmine-core/version.rb @@ -4,6 +4,6 @@ # module Jasmine module Core - VERSION = "3.2.1" + VERSION = "3.3.0" end end diff --git a/package.json b/package.json index f6854cd0..c4af4d5f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jasmine-core", "license": "MIT", - "version": "3.2.1", + "version": "3.3.0", "repository": { "type": "git", "url": "https://github.com/jasmine/jasmine.git" diff --git a/release_notes/3.3.0.md b/release_notes/3.3.0.md new file mode 100644 index 00000000..0c8966cf --- /dev/null +++ b/release_notes/3.3.0.md @@ -0,0 +1,47 @@ +# Jasmine Core 3.3 Release Notes + +## Summary + +This release includes a new way to configure Jasmine, the ability to provide additional +context with your expectations, and other things + +## Changes + +* Added expect().withContext() to provide additional information in failure messages +* Implement `withContext` for async expectations too + - Fixes [#641](https://github.com/jasmine/jasmine/issues/641) + +* New asynchronous matcher `toBeRejectedWith` + - Merges [#1615](https://github.com/jasmine/jasmine/issues/1615) from @codymikol + - Closes [#1600](https://github.com/jasmine/jasmine/issues/1600) + - Fixes [#1595](https://github.com/jasmine/jasmine/issues/1595) + +* Show a tip for `toBe` failures for how to get deep equality + - Merges [#1616](https://github.com/jasmine/jasmine/issues/1616) from @tdurtshi + - Fixes [#1614](https://github.com/jasmine/jasmine/issues/1614) + +* `expectAsync` now works with non-native promies + - Merges [#1613](https://github.com/jasmine/jasmine/issues/1613) from @codymikol + - Fixes [#1612](https://github.com/jasmine/jasmine/issues/1612) + + +* Show status marks next to spec description in HTML reporter + - Merges [#1610](https://github.com/jasmine/jasmine/issues/1610) from @m1010j + - Fixes [#1596](https://github.com/jasmine/jasmine/issues/1596) + +* Show error messages for `Error`s without a name + - Merges [#1601](https://github.com/jasmine/jasmine/issues/1601) from @nitobuendia + - Fixes [#1594](https://github.com/jasmine/jasmine/issues/1594) + +* Optimized clearTimeout cpu usage + - Merges [#1599](https://github.com/jasmine/jasmine/issues/1599) from @Havunen + +* Introduce a configuration object to `Env` deprecating old single use functions + - [finishes #159158038](http://www.pivotaltracker.com/story/159158038) + +* Specify https for github urls in package.json + - Merges [#1597](https://github.com/jasmine/jasmine/issues/1597) @limonte + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_