Skip to content
This repository was archived by the owner on Sep 2, 2021. It is now read-only.

Commit 0aeafb5

Browse files
committed
Merge pull request #465 from adobe/ingo/fix-set-release-number-appshell
appshell.rc will have Release 0.xx instead Release xx
2 parents 596cdcd + 4976815 commit 0aeafb5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appshell/version.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ BEGIN
4343
BEGIN
4444
VALUE "CompanyName", "brackets.io\0"
4545
VALUE "FileDescription", "\0"
46-
VALUE "FileVersion", "Release 44\0"
46+
VALUE "FileVersion", "Release 0.44\0"
4747
VALUE "ProductName", APP_NAME "\0"
4848
VALUE "ProductVersion", "\0"
4949
VALUE "LegalCopyright", "(c) 2012 Adobe Systems, Inc.\0"

tasks/set-sprint.js renamed to tasks/set-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module.exports = function (grunt) {
9292
);
9393
text = safeReplace(
9494
text,
95-
/(Release )([0-9]+)/,
95+
/(Release 0\.)([0-9]+)/,
9696
"$1" + release
9797
);
9898
grunt.file.write(versionRcPath, text);

0 commit comments

Comments
 (0)