Skip to content

Commit

Permalink
Bum version #
Browse files Browse the repository at this point in the history
  • Loading branch information
rpaquay committed Aug 4, 2017
1 parent e803aa9 commit 501e9c8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
10 changes: 6 additions & 4 deletions NewReleaseChecklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ When making a new release
Master branch
=============
1. Update version # in all files:
* src\Core\VsChromiumVersion.cs
* Find in files (case-insensitive): FILEVERSION (*.rc)
* Find in files (case-insensitive): PRODUCTVERSION (*.rc)
* src\VsChromium\source.extension.vsixmanifest (PackageManifest\Metadata\Identity\@Version)
* "Find In Files": "0.9.xx", "Entire Solution"
* src\Core\VsChromiumVersion.cs
* src\VsChromium\source.extension.vsixmanifest (PackageManifest\Metadata\Identity\@Version)
* src\Native\version.rc
* "Find In Files": "0,9,xx", "Entire Solution"
* src\Native\version.rc

2. Build

Expand Down
2 changes: 1 addition & 1 deletion src/Core/VsChromiumVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace VsChromium.Core {
public static class VsChromiumVersion {
public const string Product = "0.9.22";
public const string Product = "0.9.23";
public const string File = Product + ".0";
}
}
8 changes: 4 additions & 4 deletions src/Native/version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,9,22,0
PRODUCTVERSION 0,9,22,0
FILEVERSION 0,9,23,0
PRODUCTVERSION 0,9,23,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -69,12 +69,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "The Chromium Authors"
VALUE "FileDescription", "Dynamic library containing performance sensitive functions - used by VsChromiumServer."
VALUE "FileVersion", "0.9.22.0"
VALUE "FileVersion", "0.9.23.0"
VALUE "InternalName", "VsChromium.Native.dll"
VALUE "LegalCopyright", "Copyright 2016 The Chromium Authors. All rights reserved."
VALUE "OriginalFilename", "VsChromium.Native.dll"
VALUE "ProductName", "VsChromium"
VALUE "ProductVersion", "0.9.22.0"
VALUE "ProductVersion", "0.9.23.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/VsChromium/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="a10cf7af-5f0a-4502-b44b-51ff1b7c8a87" Version="0.9.22" Language="en-US" Publisher="The Chromium Authors" />
<Identity Id="a10cf7af-5f0a-4502-b44b-51ff1b7c8a87" Version="0.9.23" Language="en-US" Publisher="The Chromium Authors" />
<DisplayName>VsChromium</DisplayName>
<Description xml:space="preserve">Collection of tools to help contributing code to the Chromium project.</Description>
<License>LICENSE</License>
Expand Down

0 comments on commit 501e9c8

Please sign in to comment.