Skip to content

Commit

Permalink
Bump version to 5.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sgravrock committed Apr 8, 2023
1 parent fd31a42 commit cd50d8d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ When ready to release - specs are all green and the stories are done:
3. In `package.json`, update both the package version and the `jasmine-core`
dependency version. This package should depend on the same major and minor
version of `jasmine-core`. For instance, 4.1.1 should depend on
`"jasmine-core": "^4.1.0"`.
`"jasmine-core": "~4.1.0"`.
4. Commit and push.
5. Wait for Circle CI to go green again.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"bdd"
],
"license": "MIT",
"version": "5.0.0-alpha.0",
"version": "5.0.0-alpha.1",
"repository": {
"type": "git",
"url": "https://github.com/jasmine/jasmine-npm"
Expand All @@ -32,7 +32,7 @@
],
"dependencies": {
"glob": "^9.3.1",
"jasmine-core": "github:jasmine/jasmine#5.0"
"jasmine-core": "~5.0.0-alpha.1"
},
"bin": "./bin/jasmine.js",
"main": "./lib/jasmine.js",
Expand Down
25 changes: 25 additions & 0 deletions release_notes/5.0.0-alpha.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Jasmine 5.0.0-alpha.1 Release Notes

## Breaking changes

* Unknown args of the form `--foo=bar` are treated as errors, rather than a request
to set the env variable `--foo` to `bar`.
* `--parallel=1` is an error.

## New features and bug fixes

* Reporter errors are handled in parallel mode
* The underlying exception is included in in ESM import exceptions

## Internal improvements

* Updated to Glob 9
* Updated dev dependencies

## Supported environments

The jasmine package has been tested on 16.14+, and 18.

------

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

0 comments on commit cd50d8d

Please sign in to comment.