diff options
-rwxr-xr-x | os/windows/install.wxs | 4 | ||||
-rw-r--r-- | os/windows/version.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/os/windows/install.wxs b/os/windows/install.wxs index 6ab6ffe0..98b24b3c 100755 --- a/os/windows/install.wxs +++ b/os/windows/install.wxs @@ -2,8 +2,8 @@ <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<?define VersionMajor = 1?>
-<?define VersionMinor = 44?>
-<?define VersionBuild = 3?>
+<?define VersionMinor = 50?>
+<?define VersionBuild = 0?>
<Product Id="*"
Codepage="1252" Language="1033"
diff --git a/os/windows/version.h b/os/windows/version.h index 3642342c..3abb1d23 100644 --- a/os/windows/version.h +++ b/os/windows/version.h @@ -1,4 +1,4 @@ #define FIO_VERSION_MAJOR 1
-#define FIO_VERSION_MINOR 44
-#define FIO_VERSION_BUILD 3
-#define FIO_VERSION_STRING "1.44.3"
+#define FIO_VERSION_MINOR 50
+#define FIO_VERSION_BUILD 0
+#define FIO_VERSION_STRING "1.50"
|