Skip to content

Commit 7da158d

Browse files
committed
Bump version to 0.9.7.
1 parent 326ab78 commit 7da158d

File tree

11 files changed

+33
-18
lines changed

11 files changed

+33
-18
lines changed

NewReleaseCheclist.txt renamed to NewReleaseChecklist.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ When making a new release
33
Master branch
44
=============
55
1. Update version # in all files:
6-
* Find in files: x.y.z (*.cs *.rc)
7-
* Find in files: x,y,z (*.rc)
6+
* src\Core\VsChromiumVersion.cs
7+
* Find in files (case-insensitive): FILEVERSION (*.rc)
8+
* Find in files (case-insensitive): PRODUCTVERSION (*.rc)
9+
* src\VsChromium\source.extension.vsixmanifest (PackageManifest\Metadata\Identity\@Version)
810

911
2. Build
1012

src/Core/Core.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@
130130
<Compile Include="Processes\NtProcess.cs" />
131131
<Compile Include="Utility\ChromeUtility.cs" />
132132
<Compile Include="Utility\MarshalUtility.cs" />
133+
<Compile Include="VsChromiumVersion.cs" />
133134
<Compile Include="Win32\ComPtr.cs" />
134135
<Compile Include="Win32\Contants.cs" />
135136
<Compile Include="Win32\Debugging\CONTINUE_STATUS.cs" />

src/Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
// by using the '*' as shown below:
3737
// [assembly: AssemblyVersion("1.0.*")]
3838

39-
[assembly: AssemblyVersion("0.9.6.0")]
40-
[assembly: AssemblyFileVersion("0.9.6.0")]
39+
[assembly: AssemblyVersion(VsChromium.Core.VsChromiumVersion.File)]
40+
[assembly: AssemblyFileVersion(VsChromium.Core.VsChromiumVersion.File)]

src/Core/VsChromiumVersion.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace VsChromium.Core {
8+
public static class VsChromiumVersion {
9+
public const string Product = "0.9.7";
10+
public const string File = Product + ".0";
11+
}
12+
}

src/Host/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
// by using the '*' as shown below:
4040
// [assembly: AssemblyVersion("1.0.*")]
4141

42-
[assembly: AssemblyVersion("0.9.6.0")]
43-
[assembly: AssemblyFileVersion("0.9.6.0")]
42+
[assembly: AssemblyVersion(VsChromium.Core.VsChromiumVersion.File)]
43+
[assembly: AssemblyFileVersion(VsChromium.Core.VsChromiumVersion.File)]

src/Native/version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 0,9,6,0
55-
PRODUCTVERSION 0,9,6,0
54+
FILEVERSION 0,9,7,0
55+
PRODUCTVERSION 0,9,7,0
5656
FILEFLAGSMASK 0x3fL
5757
#ifdef _DEBUG
5858
FILEFLAGS 0x1L
@@ -69,12 +69,12 @@ BEGIN
6969
BEGIN
7070
VALUE "CompanyName", "The Chromium Authors"
7171
VALUE "FileDescription", "Dynamic library containing performance sensitive functions - used by VsChromiumServer."
72-
VALUE "FileVersion", "0.9.6.0"
72+
VALUE "FileVersion", "0.9.7.0"
7373
VALUE "InternalName", "VsChromium.Native.dll"
7474
VALUE "LegalCopyright", "Copyright 2013 The Chromium Authors. All rights reserved."
7575
VALUE "OriginalFilename", "VsChromium.Native.dll"
7676
VALUE "ProductName", "VsChromium"
77-
VALUE "ProductVersion", "0.9.6.0"
77+
VALUE "ProductVersion", "0.9.7.0"
7878
END
7979
END
8080
BLOCK "VarFileInfo"

src/Server/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
// by using the '*' as shown below:
4040
// [assembly: AssemblyVersion("1.0.*")]
4141

42-
[assembly: AssemblyVersion("0.9.6.0")]
43-
[assembly: AssemblyFileVersion("0.9.6.0")]
42+
[assembly: AssemblyVersion(VsChromium.Core.VsChromiumVersion.File)]
43+
[assembly: AssemblyFileVersion(VsChromium.Core.VsChromiumVersion.File)]

src/ServerNativeInterop/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion(VsChromium.Core.VsChromiumVersion.File)]
36+
[assembly: AssemblyFileVersion(VsChromium.Core.VsChromiumVersion.File)]

src/VsChromium/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737
// by using the '*' as shown below:
3838
// [assembly: AssemblyVersion("1.0.*")]
3939

40-
[assembly: AssemblyVersion("0.9.6.0")]
41-
[assembly: AssemblyFileVersion("0.9.6.0")]
40+
[assembly: AssemblyVersion(VsChromium.Core.VsChromiumVersion.File)]
41+
[assembly: AssemblyFileVersion(VsChromium.Core.VsChromiumVersion.File)]

src/VsChromium/VsPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace VsChromium {
1818
[PackageRegistration(UseManagedResourcesOnly = true)]
19-
[InstalledProductRegistration("#110", "#112", "0.9.6", IconResourceID = 400)]
19+
[InstalledProductRegistration("#110", "#112", VsChromium.Core.VsChromiumVersion.Product, IconResourceID = 400)]
2020
// When in development mode, update the version # below every time there is a change to the .VSCT file,
2121
// or Visual Studio won't take into account the changes (this is true with VS 2010, maybe not with
2222
// VS 2012 and later since package updates is more explicit).

0 commit comments

Comments
 (0)