Compare commits

...

2 Commits

Author SHA1 Message Date
Steve Gravrock
cb044aa273 Bump version to 3.7.1 2021-03-18 17:28:04 -07:00
Steve Gravrock
5c17456925 Updated release instructions 2021-03-17 19:44:16 -07:00
5 changed files with 14 additions and 5 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 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. Update the version in `package.json`
1. Run `npm run build`.
1. Copy version to the Ruby gem with `grunt build:copyVersionToGem` 1. Copy version to the Ruby gem with `grunt build:copyVersionToGem`
### Commit and push core changes ### Commit and push core changes
@@ -41,6 +42,7 @@ When ready to release - specs are all green and the stories are done:
### Build standalone distribution ### Build standalone distribution
1. Build the standalone distribution with `grunt buildStandaloneDist` 1. Build the standalone distribution with `grunt buildStandaloneDist`
1. This will generate `dist/jasmine-standalone-<version>.zip`, which you will upload later (see "Finally" below).
### Release the core Ruby gem ### Release the core Ruby gem
@@ -76,8 +78,7 @@ Probably only need to do this when releasing a minor version, and not a patch ve
1. In `package.json`, update both the package version and the jasmine-core dependency version 1. In `package.json`, update both the package version and the jasmine-core dependency version
1. Commit and push. 1. Commit and push.
1. Wait for Travis to go green again. 1. Wait for Travis to go green again.
1. `grunt release ` 1. `grunt release `. (Note: This will publish the package by running `npm publish`.)
1. `npm publish .`
#### Gem #### Gem

View File

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

View File

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

View File

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