Skip to content

Commit

Permalink
Issue #39 - Increased version number
Browse files Browse the repository at this point in the history
Due to an earlier, higher, version number for the setup msi, increasing
overall version number to start at 0.11.0
  • Loading branch information
gep13 committed Feb 14, 2013
1 parent a27b035 commit bb439e7
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion BuildScripts/default.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ properties {
#$versionTag = git describe --abbrev=0 --tags
#$version = $versionTag + "."
#$version += (git log $($version + '..') --pretty=oneline | measure-object).Count
$version = "0.1.5"
$version = "0.11.0"
$preversion = $version + "-pre"
$nugetExe = "$env:ChocolateyInstall\ChocolateyInstall\nuget"
$assemblyVersionPattern = 'AssemblyVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)'
Expand Down
Binary file modified ChocolateyPackage/ChocolateyGUI/tools/Setup_ChocolateyGUI.msi
Binary file not shown.

Large diffs are not rendered by default.

Binary file modified ChocolateyPackage/ChocolateyGUI/tools/cab1.cab
Binary file not shown.
2 changes: 1 addition & 1 deletion Setup_ChocolateyGUI/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
<?include ..\SharedSource\Common\CommonWixInfo.wxi ?>

<Product Id="*" Name="$(var.ProductName)" Language="$(var.Language)" Version="$(var.VersionNumber)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
<Product Id="*" Name="$(var.ProductName)" Language="$(var.Language)" Version="$(var.VersionNumber)" Manufacturer="$(var.Manufacturer)" UpgradeCode="f8164f91-fa5c-4789-b68d-9beb5b146155">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />


Expand Down
2 changes: 1 addition & 1 deletion SharedSource/Common/CommonAssemblyVersion.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
using System.Reflection;

[assembly: AssemblyVersion("0.1.5")]
[assembly: AssemblyVersion("0.11.0")]
3 changes: 1 addition & 2 deletions SharedSource/Common/CommonWixInfo.wxi
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?define VersionNumber="0.1.5" ?>
<?define UpgradeCode="f8164f91-fa5c-4789-b68d-9beb5b146155" ?>
<?define VersionNumber="0.11.0" ?>
<?define ProductName="ChocolateyGUI" ?>
<?define Language="1033" ?>
<?define Manufacturer="Baes Christiaan"?>
Expand Down

0 comments on commit bb439e7

Please sign in to comment.