Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Idris to version 1.3.0 #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion idris/idris.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>idris</id>
<title>Idris</title>
<version>1.1.1</version>
<version>1.3.0</version>
<authors>Edwin Brady, and many contributors</authors>
<owners>userzimmermann</owners>
<summary>A Dependently Typed Functional Programming Language</summary>
Expand Down
6 changes: 3 additions & 3 deletions idris/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ $ErrorActionPreference = 'Stop';

$packageName = 'idris'

$idrisVersion = '1.1.1'
$idrisVersion = '1.3.0'

$url = "https://neon.se/idris/idris-$idrisVersion-win32.7z"
$checksum = '40F5FB612C37F0E4D7F30B29F55776B3D46E9E13'
$checksum = '5BB6AFCE33987A190086CFDC59B4CDFE8E3254EC'
$checksumType = 'SHA1'

$url64 = "https://neon.se/idris/idris-$idrisVersion-win64.7z"
$checksum64 = 'FB73F87F09CE9881476B4DE312AA4A0E1BBC13C4'
$checksum64 = 'C8F787C39BA34F7BEB133D9F559F06E74DA10E8F'
$checksumType64 = 'SHA1'

$toolsDir = Split-Path -parent $MyInvocation.MyCommand.Definition
Expand Down