Skip to content

Commit d730a64

Browse files
committed
Merge pull request #610 from WPFerg/dev
Release 10.0.0-rc.0
2 parents 99bc7f2 + 4676a99 commit d730a64

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ module.exports = function(grunt) {
208208
commitMessage: 'Release %VERSION%',
209209
commitFiles: ['package.json', 'src/version-value.js'],
210210
createTag: false,
211-
push: false
211+
push: false,
212+
prereleaseName: 'rc'
212213
}
213214
},
214215

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bitflux-openfin",
3-
"version": "9.2.0",
3+
"version": "10.0.0-rc.0",
44
"scripts": {
55
"test": "grunt ci",
66
"postinstall": "cd node_modules/BitFlux && npm i"

src/version-value.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(function() {
22
'use strict';
33

4-
const VERSION = { version: '9.2.0' };
4+
const VERSION = { version: '10.0.0-rc.0' };
55

66
angular.module('stockflux.version')
77
.value('Version', VERSION.version);

0 commit comments

Comments
 (0)