From cb044aa2735e32bff9e99e4c92d5c639af05abf5 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Thu, 18 Mar 2021 17:28:04 -0700 Subject: [PATCH] Bump version to 3.7.1 --- RELEASE.md | 1 + lib/jasmine-core/jasmine.js | 2 +- lib/jasmine-core/version.rb | 2 +- package.json | 2 +- release_notes/3.7.1.md | 8 ++++++++ 5 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 release_notes/3.7.1.md diff --git a/RELEASE.md b/RELEASE.md index f69663e0..8d0689b1 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index f96e205c..d0b944f4 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -9469,5 +9469,5 @@ getJasmineRequireObj().UserContext = function(j$) { }; getJasmineRequireObj().version = function() { - return '3.6.0'; + return '3.7.1'; }; diff --git a/lib/jasmine-core/version.rb b/lib/jasmine-core/version.rb index e87815de..9f6452ff 100644 --- a/lib/jasmine-core/version.rb +++ b/lib/jasmine-core/version.rb @@ -4,6 +4,6 @@ # module Jasmine module Core - VERSION = "3.7.0" + VERSION = "3.7.1" end end diff --git a/package.json b/package.json index 62637443..e65e990f 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/release_notes/3.7.1.md b/release_notes/3.7.1.md new file mode 100644 index 00000000..f383cff6 --- /dev/null +++ b/release_notes/3.7.1.md @@ -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.