Skip to content

Commit

Permalink
Builders updated to 0.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
xforever1313 committed Apr 8, 2018
1 parent 6bd687e commit 81f8a99
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 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.6.0</version>
<version>0.6.1</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.6.0/windows/ChaskisInstaller.msi'
$url64 = 'https://files.shendrick.net/projects/chaskis/releases/0.6.1/windows/ChaskisInstaller.msi'

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

checksum = ''
checksumType = 'sha256'
checksum64 = '628F24F7B68E5F9CE37C7C2D1B73DBA3D000AC8FB65AB3587B434F38DE9216BF'
checksum64 = 'F89F1F263B652BEB7450EA5B10E81F0E0E9F45399C7060A326D3FDA9C5993FCF'
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 <seth@shendrick.net>
pkgname=chaskis
pkgver=0.6.0
pkgver=0.6.1
pkgrel=1
epoch=
pkgdesc="A generic framework written in C# for making IRC Bots."
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Install/linux/debian/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: chaskis
Version: 0.6.0
Version: 0.6.1
Maintainer: Seth Hendrick
Architecture: all
Description: 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.6.0
%define unmangled_version 0.6.0
%define version 0.6.1
%define unmangled_version 0.6.1
%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="E39E99D6-F808-4184-9AA7-17DC46944876"
<Product Id="89238B6E-E2A6-4090-9711-8C8B7C4E3DE5"
Name="Chaskis IRC Bot"
Language="1033"
Version="0.6.0"
Version="0.6.1"
Manufacturer="Seth Hendrick"
UpgradeCode="03E2F9BC-D817-4E4B-A957-AC54566F4524"> <!-- DO NOT TOUCH -->

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="E39E99D6-F808-4184-9AA7-17DC46944876"
<Product Id="89238B6E-E2A6-4090-9711-8C8B7C4E3DE5"
Name="{%FullName%}"
Language="1033"
Version="{%ChaskisMainVersion%}"
Expand Down

0 comments on commit 81f8a99

Please sign in to comment.