Skip to content

Commit e125c90

Browse files
authored
Prepare release 0.6.0 (#2733)
* Prepare release 0.6.0 * Fix bootstrap chez * Correct version in bootstrap chez
1 parent 57c589c commit e125c90

File tree

16 files changed

+13773
-12151
lines changed

16 files changed

+13773
-12151
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ If all is well, to install, type:
7373
### 3: Installing with an existing Idris 2
7474

7575
If you have the latest *released* version of Idris 2
76-
(0.4.0 at the time of writing) installed:
76+
(0.5.1 at the time of writing) installed:
7777

7878
- `make all`
7979
- `make install`

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ TARGET = ${TARGETDIR}/${NAME}
1313
IDRIS2_CG ?= chez
1414

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

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

Release/CHECKLIST

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[ ] Change version number in flake.nix
66
[ ] Change version number in test pkg010 (TODO: make this step unnecessary!)
77
[ ] Make sure INSTALL.md gives the correct minimum Idris version
8-
[ ] Update bootstrap chez and racket
8+
[ ] Update bootstrap chez and racket (built with new version)
99
[ ] Remove __collect_safe from generated chez (to avoid need for chez >9.5)
1010
[ ] Tag on github with version number (in the form vX.Y.Z)
1111
[ ] make libdocs and upload to idris-lang.org

bootstrap/idris2_app/idris2.rkt

Lines changed: 6894 additions & 6077 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: 6862 additions & 6057 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.1
4+
/ // __ / ___/ / ___/ __/ / Version 0.6.0
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.1
4+
/ // __ / ___/ / ___/ __/ / Version 0.6.0
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.1
4+
/ // __ / ___/ / ___/ __/ / Version 0.6.0
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
@@ -10,7 +10,7 @@
1010

1111
outputs = { self, nixpkgs, flake-utils, idris-emacs-src }:
1212
let
13-
idris2-version = "0.5.1";
13+
idris2-version = "0.6.0";
1414
lib = import ./nix/lib.nix;
1515
sys-agnostic = rec {
1616
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.1
2+
version = 0.6.0
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.1
2+
version = 0.6.0
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.1
2+
version = 0.6.0
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.1
2+
version = 0.6.0
33

44
opts = "--ignore-missing-ipkg"
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.1
2+
version = 0.6.0
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.1
2+
version = 0.6.0
33

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

tests/idris2/pkg010/expected.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
1/1: Building Main (Main.idr)
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
4-
Installing package file for testpkg to __PWD__currently/nonexistent/dir/idris2-0.5.1/testpkg-0
2+
Installing __PWD__build/ttc/Main.ttc to __PWD__currently/nonexistent/dir/idris2-0.6.0/testpkg-0
3+
Installing __PWD__build/ttc/Main.ttc to __PWD__currently/nonexistent/dir/idris2-0.6.0/testpkg-0
4+
Installing package file for testpkg to __PWD__currently/nonexistent/dir/idris2-0.6.0/testpkg-0

0 commit comments

Comments
 (0)