Skip to content

Commit

Permalink
bump version to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregg Van Hove committed Feb 6, 2018
1 parent b8cf9aa commit 74d3e96
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ node_js:
- '8'
- '4'
before_script:
- npm install git+https://github.com/jasmine/jasmine.git#3.0-features
- npm install git+https://github.com/jasmine/jasmine.git
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"bdd"
],
"license": "MIT",
"version": "3.0.0-dev",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/jasmine/jasmine-npm"
Expand All @@ -19,7 +19,7 @@
},
"dependencies": {
"glob": "^7.0.6",
"jasmine-core": "git+https://github.com/jasmine/jasmine.git#3.0-features"
"jasmine-core": "~3.0.0"
},
"bin": "./bin/jasmine.js",
"main": "./lib/jasmine.js",
Expand Down
32 changes: 32 additions & 0 deletions release_notes/3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Jasmine NPM 3.0 Release Notes

## Summary

Jasmine 3.0 is a major release of Jasmine, and as such includes some breaking changes in addition to various new features.

Please see the [release notes for Jasmine-Core](https://github.com/jasmine/jasmine/blob/master/release_notes/3.0.md)

There is also a 2.99 release of Jasmine that will present deprecation warnings for suites that will encounter different behavior in 3.0.

## Changes

* Support stopping jasmine execution on first spec failure via config object or with `--fail-fast` command line arg
- Fixes [#16](https://github.com/jasmine/jasmine-npm/issues/16)

* Add ability to pass `--reporter` on the command line
- Fixes [jasmine/jasmine#1027](https://github.com/jasmine/jasmine/issues/1027)

* Print full details for suite failures

* Report how to re-run Jasmine with the current seed

* Run specs in random order by default

* Treat suites with focused specs as failures

* Removed deprecated completion callback from console reporter


------

_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_

0 comments on commit 74d3e96

Please sign in to comment.