diff --git a/CefSharp.BrowserSubprocess.Core/Resource.rc b/CefSharp.BrowserSubprocess.Core/Resource.rc index e0a32e643c..7c913b7c0b 100644 --- a/CefSharp.BrowserSubprocess.Core/Resource.rc +++ b/CefSharp.BrowserSubprocess.Core/Resource.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO - FILEVERSION 66.0.0 - PRODUCTVERSION 66.0.0 + FILEVERSION 67.0.0 + PRODUCTVERSION 67.0.0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -16,10 +16,10 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "FileDescription", "CefSharp.BrowserSubprocess.Core" - VALUE "FileVersion", "66.0.0" + VALUE "FileVersion", "67.0.0" VALUE "LegalCopyright", "Copyright © 2010-2018 The CefSharp Authors" VALUE "ProductName", "CefSharp" - VALUE "ProductVersion", "66.0.0" + VALUE "ProductVersion", "67.0.0" END END BLOCK "VarFileInfo" diff --git a/CefSharp.BrowserSubprocess/app.manifest b/CefSharp.BrowserSubprocess/app.manifest index 52c8cb63eb..9b2ea5ef43 100644 --- a/CefSharp.BrowserSubprocess/app.manifest +++ b/CefSharp.BrowserSubprocess/app.manifest @@ -8,7 +8,7 @@ xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - + diff --git a/CefSharp.Core/Resource.rc b/CefSharp.Core/Resource.rc index 947b9db663..079078b242 100644 --- a/CefSharp.Core/Resource.rc +++ b/CefSharp.Core/Resource.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO - FILEVERSION 66.0.0 - PRODUCTVERSION 66.0.0 + FILEVERSION 67.0.0 + PRODUCTVERSION 67.0.0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -16,10 +16,10 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "FileDescription", "CefSharp.Core" - VALUE "FileVersion", "66.0.0" + VALUE "FileVersion", "67.0.0" VALUE "LegalCopyright", "Copyright © 2010-2018 The CefSharp Authors" VALUE "ProductName", "CefSharp" - VALUE "ProductVersion", "66.0.0" + VALUE "ProductVersion", "67.0.0" END END BLOCK "VarFileInfo" diff --git a/CefSharp.OffScreen.Example/app.manifest b/CefSharp.OffScreen.Example/app.manifest index 73fd28d219..467b29212a 100644 --- a/CefSharp.OffScreen.Example/app.manifest +++ b/CefSharp.OffScreen.Example/app.manifest @@ -7,7 +7,7 @@ xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - + diff --git a/CefSharp.WinForms.Example/app.manifest b/CefSharp.WinForms.Example/app.manifest index 24d76f8399..bb8757cb4c 100644 --- a/CefSharp.WinForms.Example/app.manifest +++ b/CefSharp.WinForms.Example/app.manifest @@ -8,7 +8,7 @@ xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - + diff --git a/CefSharp.Wpf.Example/app.manifest b/CefSharp.Wpf.Example/app.manifest index 1d78758937..a75231db35 100644 --- a/CefSharp.Wpf.Example/app.manifest +++ b/CefSharp.Wpf.Example/app.manifest @@ -7,7 +7,7 @@ xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - + diff --git a/CefSharp/Properties/AssemblyInfo.cs b/CefSharp/Properties/AssemblyInfo.cs index b5b67ed183..e15cf446de 100644 --- a/CefSharp/Properties/AssemblyInfo.cs +++ b/CefSharp/Properties/AssemblyInfo.cs @@ -34,8 +34,8 @@ public static class AssemblyInfo public const bool ComVisible = false; public const string AssemblyCompany = "The CefSharp Authors"; public const string AssemblyProduct = "CefSharp"; - public const string AssemblyVersion = "66.0.0"; - public const string AssemblyFileVersion = "66.0.0.0"; + public const string AssemblyVersion = "67.0.0"; + public const string AssemblyFileVersion = "67.0.0.0"; public const string AssemblyCopyright = "Copyright © 2010-2018 The CefSharp Authors"; public const string CefSharpCoreProject = "CefSharp.Core, PublicKey=" + PublicKey; public const string CefSharpBrowserSubprocessProject = "CefSharp.BrowserSubprocess, PublicKey=" + PublicKey; diff --git a/build.ps1 b/build.ps1 index 08f41e65e0..f4d339b0de 100644 --- a/build.ps1 +++ b/build.ps1 @@ -3,9 +3,9 @@ param( [Parameter(Position = 0)] [string] $Target = "vs2015", [Parameter(Position = 1)] - [string] $Version = "66.0.0", + [string] $Version = "67.0.0", [Parameter(Position = 2)] - [string] $AssemblyVersion = "66.0.0" + [string] $AssemblyVersion = "67.0.0" ) $WorkingDir = split-path -parent $MyInvocation.MyCommand.Definition