Bump version numbers to 0.21, as we're closer to that than 0.20 now

This commit is contained in:
baldurk
2014-08-25 12:30:37 +01:00
parent be3ee7f915
commit e68162ccb3
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='RenderDoc' Id='*' UpgradeCode='D320753C-4B18-4905-A752-E68959943E7D'
Language='1033' Codepage='1252' Version='0.19.0' Manufacturer='Crytek'>
Language='1033' Codepage='1252' Version='0.21.0' Manufacturer='Crytek'>
<Package Id='*' Keywords='Installer' Description="Installer for RenderDoc"
Comments='RenderDoc Homepage is http://renderdoc.org/' Manufacturer='Crytek'
@@ -25,7 +25,7 @@
<UpgradeVersion Minimum="0.18.0"
IncludeMinimum="yes"
IncludeMaximum="yes"
Maximum="0.19.0"
Maximum="0.21.0"
Property="OLDERVERSIONBEINGUPGRADED" />
</Upgrade>
+2 -2
View File
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='RenderDoc' Id='*' UpgradeCode='D320753C-4B18-4905-A752-E68959943E7D'
Language='1033' Codepage='1252' Version='0.19.0' Manufacturer='Crytek'>
Language='1033' Codepage='1252' Version='0.21.0' Manufacturer='Crytek'>
<Package Id='*' Keywords='Installer' Description="Installer for RenderDoc"
Comments='RenderDoc Homepage is http://renderdoc.org/' Platform="x64" Manufacturer='Crytek'
@@ -15,7 +15,7 @@
<UpgradeVersion Minimum="0.18.0"
IncludeMinimum="yes"
IncludeMaximum="yes"
Maximum="0.19.0"
Maximum="0.21.0"
Property="OLDERVERSIONBEINGUPGRADED" />
</Upgrade>
+1 -1
View File
@@ -25,7 +25,7 @@
#endif
#define RENDERDOC_VERSION_MAJOR 0
#define RENDERDOC_VERSION_MINOR 20
#define RENDERDOC_VERSION_MINOR 21
#define GIT_COMMIT_HASH "NO_GIT_COMMIT_HASH_DEFINED"
//#define RENDERDOC_OFFICIAL_BUILD // used to determine whether to submit auto crash reports
#define RENDERDOC_VERSION_STRING STRINGIZE(RENDERDOC_VERSION_MAJOR) "." STRINGIZE(RENDERDOC_VERSION_MINOR)
+2 -2
View File
@@ -57,8 +57,8 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.20.0.0")]
[assembly: AssemblyFileVersion("0.20.0.0")]
[assembly: AssemblyVersion("0.21.0.0")]
[assembly: AssemblyFileVersion("0.21.0.0")]
// this can be replaced with the git hash of the commit being built from e.g. in a script
[assembly: AssemblyInformationalVersion("NO_GIT_COMMIT_HASH_DEFINED")]