Bump version to 3.7.1

This commit is contained in:
Steve Gravrock
2021-03-18 17:28:04 -07:00
parent 5c17456925
commit cb044aa273
5 changed files with 12 additions and 3 deletions

View File

@@ -30,6 +30,7 @@ When ready to release - specs are all green and the stories are done:
1. Update the release notes in `release_notes` - use the Anchorman gem to generate the markdown file and edit accordingly
1. Update the version in `package.json`
1. Run `npm run build`.
1. Copy version to the Ruby gem with `grunt build:copyVersionToGem`
### Commit and push core changes

View File

@@ -9469,5 +9469,5 @@ getJasmineRequireObj().UserContext = function(j$) {
};
getJasmineRequireObj().version = function() {
return '3.6.0';
return '3.7.1';
};

View File

@@ -4,6 +4,6 @@
#
module Jasmine
module Core
VERSION = "3.7.0"
VERSION = "3.7.1"
end
end

View File

@@ -1,7 +1,7 @@
{
"name": "jasmine-core",
"license": "MIT",
"version": "3.7.0",
"version": "3.7.1",
"repository": {
"type": "git",
"url": "https://github.com/jasmine/jasmine.git"

8
release_notes/3.7.1.md Normal file
View File

@@ -0,0 +1,8 @@
# Jasmine Core 3.7.1 Release Notes
## Summary
This is a bug fix release of Jasmine. It's identical to 3.7.0 except that it
correctly reports its version number. Please see the
[3.7.0 release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/3.7.0.md)
if you're upgrading directly from 3.6.0 or earlier.