diff --git a/package.json b/package.json index 50fa9bf..153ac5d 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "bdd" ], "license": "MIT", - "version": "5.0.0-dev.0", + "version": "5.0.0-alpha.0", "repository": { "type": "git", "url": "https://github.com/jasmine/jasmine-npm" @@ -32,7 +32,7 @@ ], "dependencies": { "glob": "^8.1.0", - "jasmine-core": "github:jasmine/jasmine#5.0" + "jasmine-core": "^5.0.0-alpha.0" }, "bin": "./bin/jasmine.js", "main": "./lib/jasmine.js", diff --git a/release_notes/5.0.0-alpha.0.md b/release_notes/5.0.0-alpha.0.md new file mode 100644 index 0000000..a02348f --- /dev/null +++ b/release_notes/5.0.0-alpha.0.md @@ -0,0 +1,30 @@ +# Jasmine 5.0.0-alpha.0 Release Notes + +## Summary + +This release adds support for parallel execution and updates file glob handling. +See the +[parallel documentation](https://jasmine.github.io/tutorials/running_specs_in_parallel) +for more information about that feature. Please also read the +[jasmine-core release notes](https://github.com/jasmine/jasmine/blob/5.0/release_notes/5.0.0-alpha.0.md) +for information about changes in that package, including breaking changes. + +## Breaking changes + +* Node versions older than 16.14 are no longer supported. +* Backslashes in the `specFiles` and `helperFiles` configuration properties are + interpreted as the start of escape sequences on all OSes. Previous versions + of Jasmine used a version of the `glob` package that treated them as directory + separators on Windows and the start of escape sequences on other OSes. + +## New features + +* Support for parallel execution + +## Supported environments + +The jasmine package has been tested on 16.14+, and 18. + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_