Skip to content

Commit 1e90182

Browse files
authored
Version increment to 0.5.1 (#1939)
This is to remove the requirement on Chez >9.5
1 parent 87c1cb6 commit 1e90182

File tree

14 files changed

+1258
-1264
lines changed

14 files changed

+1258
-1264
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ IDRIS2_CG ?= chez
1414

1515
MAJOR=0
1616
MINOR=5
17-
PATCH=0
17+
PATCH=1
1818

1919
GIT_SHA1=
2020
ifeq ($(shell git status >/dev/null 2>&1; echo $$?), 0)

bootstrap/idris2_app/idris2.rkt

Lines changed: 622 additions & 625 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bootstrap/idris2_app/idris2.ss

Lines changed: 623 additions & 626 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/source/listing/idris-prompt-helloworld.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$ idris2 hello.idr
22
____ __ _ ___
33
/ _/___/ /____(_)____ |__ \
4-
/ // __ / ___/ / ___/ __/ / Version 0.5.0
4+
/ // __ / ___/ / ___/ __/ / Version 0.5.1
55
_/ // /_/ / / / (__ ) / __/ https://www.idris-lang.org
66
/___/\__,_/_/ /_/____/ /____/ Type :? for help
77

docs/source/listing/idris-prompt-interp.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$ idris2 interp.idr
22
____ __ _ ___
33
/ _/___/ /____(_)____ |__ \
4-
/ // __ / ___/ / ___/ __/ / Version 0.5.0
4+
/ // __ / ___/ / ___/ __/ / Version 0.5.1
55
_/ // /_/ / / / (__ ) / __/ https://www.idris-lang.org
66
/___/\__,_/_/ /_/____/ /____/ Type :? for help
77

docs/source/listing/idris-prompt-start.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$ idris2
22
____ __ _ ___
33
/ _/___/ /____(_)____ |__ \
4-
/ // __ / ___/ / ___/ __/ / Version 0.5.0
4+
/ // __ / ___/ / ___/ __/ / Version 0.5.1
55
_/ // /_/ / / / (__ ) / __/ https://www.idris-lang.org
66
/___/\__,_/_/ /_/____/ /____/ Type :? for help
77

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
outputs = { self, nixpkgs, nixpkgs-chez-racket, flake-utils, idris-emacs-src }:
1313
let
14-
idris2-version = "0.5.0";
14+
idris2-version = "0.5.1";
1515
lib = import ./nix/lib.nix;
1616
sys-agnostic = rec {
1717
templates.pkg = {

idris2api.ipkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package idris2
2-
version = 0.5.0
2+
version = 0.5.1
33

44
modules =
55
Algebra,

libs/base/base.ipkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package base
2-
version = 0.5.0
2+
version = 0.5.1
33

44
opts = "--ignore-missing-ipkg -Wno-shadowing"
55

libs/contrib/contrib.ipkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package contrib
2-
version = 0.5.0
2+
version = 0.5.1
33

44
opts = "--ignore-missing-ipkg -Wno-shadowing"
55

libs/network/network.ipkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package network
2-
version = 0.5.0
2+
version = 0.5.1
33

44
opts = "--ignore-missing-ipkg -p contrib"
55

libs/prelude/prelude.ipkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package prelude
2-
version = 0.5.0
2+
version = 0.5.1
33

44
opts = "--ignore-missing-ipkg --no-prelude"
55

libs/test/test.ipkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package test
2-
version = 0.5.0
2+
version = 0.5.1
33

44
depends = contrib
55

tests/idris2/pkg010/expected.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
1/1: Building Main (Main.idr)
2-
Installing __PWD__build/ttc/Main.ttc to __PWD__currently/nonexistent/dir/idris2-0.5.0/testpkg-0
3-
Installing __PWD__build/ttc/Main.ttc to __PWD__currently/nonexistent/dir/idris2-0.5.0/testpkg-0
2+
Installing __PWD__build/ttc/Main.ttc to __PWD__currently/nonexistent/dir/idris2-0.5.1/testpkg-0
3+
Installing __PWD__build/ttc/Main.ttc to __PWD__currently/nonexistent/dir/idris2-0.5.1/testpkg-0

0 commit comments

Comments
 (0)