Skip to content

Commit

Permalink
Version bump to 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
xforever1313 committed Oct 9, 2017
1 parent cb16a91 commit f508ffb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Chaskis/Install/chocolatey/package/chaskis.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>0.3.0</version>
<version>0.4.0</version>
<packageSourceUrl>https://github.com/xforever1313/Chaskis/</packageSourceUrl>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Seth Hendrick</owners>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $ErrorActionPreference = 'Stop';
$packageName= $env:ChocolateyPackageName
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = ''
$url64 = 'https://files.shendrick.net/projects/chaskis/releases/0.3.0/ChaskisInstaller.msi'
$url64 = 'https://files.shendrick.net/projects/chaskis/releases/0.4.0/ChaskisInstaller.msi'

$packageArgs = @{
packageName = $packageName
Expand All @@ -17,7 +17,7 @@ $packageArgs = @{

checksum = ''
checksumType = 'sha256'
checksum64 = '932009E195FECAB98FC39C81178D9CD3E6E4C0380CF38D2F6DF3B22B08F5E9B4'
checksum64 = 'D7C00276C20075FC61543F3F50CBEDFF30B565583B155EE8358642C1E66EBD0D'
checksumType64= 'sha256'

silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Install/linux/arch/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Seth Hendrick <[email protected]>
pkgname=chaskis
pkgver=0.3.0
pkgver=0.4.0
pkgrel=1
epoch=
pkgdesc="A generic framework written in C# for making IRC Bots."
Expand Down
4 changes: 2 additions & 2 deletions Chaskis/Install/linux/fedora/chaskis.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%define name chaskis
%define version 0.3.0
%define unmangled_version 0.3.0
%define version 0.4.0
%define unmangled_version 0.4.0
%define release 1
%define source https://github.com/xforever1313/Chaskis/archive/%{unmangled_version}.tar.gz
%define untardir Chaskis-%{unmangled_version}
Expand Down
4 changes: 2 additions & 2 deletions Chaskis/Install/windows/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
-->

<!-- Product ID must change with each new version. The upgrade code must stay the same -->
<Product Id="9A4FF8AF-FAF9-4A9F-9A05-6DF518621A81"
<Product Id="64B1BEE2-F56C-416D-8443-6E3EA514BD98"
Name="Chaskis IRC Bot"
Language="1033"
Version="0.3.0"
Version="0.4.0"
Manufacturer="Seth Hendrick"
UpgradeCode="03E2F9BC-D817-4E4B-A957-AC54566F4524"
>
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Install/windows/Product.wxs.template
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
-->

<!-- Product ID must change with each new version. The upgrade code must stay the same -->
<Product Id="9A4FF8AF-FAF9-4A9F-9A05-6DF518621A81"
<Product Id="64B1BEE2-F56C-416D-8443-6E3EA514BD98"
Name="{%FullName%}"
Language="1033"
Version="{%ChaskisMainVersion%}"
Expand Down

0 comments on commit f508ffb

Please sign in to comment.