Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Commit

Permalink
Bump version to 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgravrock committed Jul 2, 2021
1 parent 0a5901b commit fb6f3f2
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
3. Generate release notes in `release_notes` using the Anchorman gem and edit
them.
4. Update the version and jasmine-core version in `setup.py`.
5. Commit the release notes and `package.json` change.
5. Commit the release notes and `setup.py` change.
6. Tag the commit.
7. `git push`
8. `git push --tags`
Expand Down
36 changes: 36 additions & 0 deletions release_notes/3.8.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Jasmine Py 3.8 Release Notes

## Summary

Updates to Jasmine Core 3.8.0. See the
[jasmine-core release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/3.8.0.md)
for details.

## Deprecation

The Jasmine packages for Python are deprecated. We intend to continue releasing
them through the end of the 3.x series, but after that they will be
discontinued. We recommend migrating to the following alternatives:

* The [jasmine-browser-runner](https://github.com/jasmine/jasmine-browser)
npm package to run specs in browsers, including headless Chrome and
Saucelabs. This is the most direct replacement for the `jasmine server`
and `jasmine ci` commands provided by the `jasmine` Python package.
* The [jasmine](https://github.com/jasmine/jasmine-npm) npm package (
`npm install jasmine`) to run specs under Node.js.
* The standalone distribution from the
[latest Jasmine release](https://github.com/jasmine/jasmine/releases) to
run specs in browsers with no additional tools.
* The [jasmine-core](https://github.com/jasmine/jasmine) npm package if all
you need is the Jasmine assets. This is the direct equivalent of the
jasmine-core Python package.

## Supported environments

The jasmine Python package has been tested on Python 3.5-3.9. See the
[jasmine-core release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/3.8.0.md)
for supported browsers.

------

_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setup(
name="jasmine",
version="3.7.0",
version="3.8.0",
url="http://jasmine.github.io",
author="Pivotal Labs",
author_email="jasmine-js@googlegroups.com",
Expand Down Expand Up @@ -70,7 +70,7 @@
install_requires=[
'PyYAML>=4.2b1',
'Jinja2>=2.0, <3.0',
'jasmine-core>=3.7.1, <4.0',
'jasmine-core>=3.8.0, <4.0',
'CherryPy>=11',
'selenium>=3.0',
],
Expand Down

0 comments on commit fb6f3f2

Please sign in to comment.