From cd2e5dc1f165bfda05efb7fbdaac66b97cc084e6 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 1 Jan 2022 11:21:41 -0800 Subject: [PATCH] Bump version to 3.99.0 --- RELEASE.md | 3 --- release_notes/3.99.0.md | 17 +++++++++++++++++ requirements_dev.txt | 1 - setup.py | 5 ++--- 4 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 release_notes/3.99.0.md diff --git a/RELEASE.md b/RELEASE.md index 21d09ea..1782325 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,8 +1,5 @@ # Releasing jasmine-py -1. Special step for 3.99: After merging to main, remove the jasmine-core -dependency from requirements_dev.txt. - 1. Install [twine](https://github.com/pypa/twine) 2. Make sure that all specs are green on CI. 3. Generate release notes in `release_notes` using the Anchorman gem and edit diff --git a/release_notes/3.99.0.md b/release_notes/3.99.0.md new file mode 100644 index 0000000..f7184e9 --- /dev/null +++ b/release_notes/3.99.0.md @@ -0,0 +1,17 @@ +# Jasmine Gem 3.99.0 Release Notes + +This release adds deprecation warnings for breaking changes that will be +introduced in Jasmine 4.0. Please see the +[migration guide](https://jasmine.github.io/tutorials/upgrading_to_Jasmine_4.0) +for more information. + +This is the last planned release of Jasmine for Python. Versions 4.0 and later +will be distributed only via NPM and the standalone distribution. + +## Supported Environments + +The jasmine Python package has been tested on Python 3.6-3.9. + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_ diff --git a/requirements_dev.txt b/requirements_dev.txt index b9937a8..96ea414 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -4,4 +4,3 @@ pytest<6 pytest-cov pytest-flakes requests -jasmine-core @ git+git://github.com/jasmine/jasmine.git@main diff --git a/setup.py b/setup.py index 5453a5f..f248517 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name="jasmine", - version="3.10.0", + version="3.99.0", url="http://jasmine.github.io", author="Pivotal Labs", author_email="jasmine-js@googlegroups.com", @@ -70,8 +70,7 @@ install_requires=[ 'PyYAML>=4.2b1', 'Jinja2>=2.0, <3.0', - # TODO: set to jasmine-core>=3.99.0, <4.0' during 3.99 release - 'jasmine-core', + 'jasmine-core>=3.99.0, <4.0', 'CherryPy>=11', 'selenium>=3.0', ],