mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-24 06:52:19 +03:00
[ rc ] Prepare for 0.7.0
A lot more sensible all around : )
This commit is contained in:
parent
d6892b4f04
commit
ea180d0721
4
Makefile
4
Makefile
@ -13,8 +13,8 @@ TARGET = ${TARGETDIR}/${NAME}
|
||||
IDRIS2_CG ?= chez
|
||||
|
||||
MAJOR=0
|
||||
MINOR=6
|
||||
PATCH=9
|
||||
MINOR=7
|
||||
PATCH=0
|
||||
|
||||
GIT_SHA1=
|
||||
ifeq ($(shell git status >/dev/null 2>&1; echo $$?), 0)
|
||||
|
@ -1,18 +1,22 @@
|
||||
[x] Change version number (MAJOR, MINOR, PATCH) in Makefile
|
||||
[x] Change version numbers in doc listings
|
||||
[x] Change version numbers in prelude, base, contrib, linear, network, papers, and test ipkgs
|
||||
[x] idris-prompt-helloworld
|
||||
[x] idris-prompt-interp
|
||||
[x] idris-prompt-start
|
||||
[x] Change version numbers in prelude, base, contrib, linear, network, papers,
|
||||
and test ipkgs
|
||||
[x] Change version number in idris2api.ipkg
|
||||
[x] Change version number in flake.nix
|
||||
[x] Change version number in tests pkg010 and pkg017 (TODO: make this step unnecessary!)
|
||||
[x] Make sure INSTALL.md gives the correct minimum Idris version
|
||||
[x] Update CHANGELOG.md to refer to the "Next version" changes as the new
|
||||
release version, leaving the next "Next version" blank.
|
||||
[x] Update bootstrap chez and racket (built with new version)
|
||||
[x] Compile Idris2 with the appropriate CG
|
||||
[x] Copy the resulting files from idris2 to bootstrap/idris2_app/
|
||||
[x] Change `IdrisPaths-yprefix` in the bootstrap sources to be defined as the
|
||||
[ ] Update bootstrap chez and racket (built with new version)
|
||||
[ ] Compile Idris2 with the appropriate CG
|
||||
[ ] Copy the resulting files from idris2 to bootstrap/idris2_app/
|
||||
[ ] Change `IdrisPaths-yprefix` in the bootstrap sources to be defined as the
|
||||
string "__PREFIX__" rather than your local prefix
|
||||
[x] Remove __collect_safe from generated chez (to avoid need for chez >9.5)
|
||||
[x] Tag on github with version number (in the form vX.Y.Z)
|
||||
[x] Make libdocs and upload to idris-lang.org
|
||||
[ ] Remove __collect_safe from generated chez (to avoid need for chez >9.5)
|
||||
[ ] Tag on github with version number (in the form vX.Y.Z)
|
||||
[ ] Make libdocs and upload to idris-lang.org
|
||||
[ ] Run release script
|
||||
|
@ -1,7 +1,7 @@
|
||||
$ idris2 hello.idr
|
||||
____ __ _ ___
|
||||
/ _/___/ /____(_)____ |__ \
|
||||
/ // __ / ___/ / ___/ __/ / Version 0.6.9
|
||||
/ // __ / ___/ / ___/ __/ / Version 0.7.0
|
||||
_/ // /_/ / / / (__ ) / __/ https://www.idris-lang.org
|
||||
/___/\__,_/_/ /_/____/ /____/ Type :? for help
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
$ idris2 interp.idr
|
||||
____ __ _ ___
|
||||
/ _/___/ /____(_)____ |__ \
|
||||
/ // __ / ___/ / ___/ __/ / Version 0.6.9
|
||||
/ // __ / ___/ / ___/ __/ / Version 0.7.0
|
||||
_/ // /_/ / / / (__ ) / __/ https://www.idris-lang.org
|
||||
/___/\__,_/_/ /_/____/ /____/ Type :? for help
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
$ idris2
|
||||
____ __ _ ___
|
||||
/ _/___/ /____(_)____ |__ \
|
||||
/ // __ / ___/ / ___/ __/ / Version 0.6.9
|
||||
/ // __ / ___/ / ___/ __/ / Version 0.7.0
|
||||
_/ // /_/ / / / (__ ) / __/ https://www.idris-lang.org
|
||||
/___/\__,_/_/ /_/____/ /____/ Type :? for help
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils, idris-emacs-src }:
|
||||
let
|
||||
idris2-version = "0.6.9";
|
||||
idris2-version = "0.7.0";
|
||||
lib = import ./nix/lib.nix;
|
||||
sys-agnostic = rec {
|
||||
templates.pkg = {
|
||||
|
@ -1,5 +1,5 @@
|
||||
package idris2
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
modules =
|
||||
Algebra,
|
||||
|
@ -1,5 +1,5 @@
|
||||
package base
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
opts = "--ignore-missing-ipkg -Wno-shadowing"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
package contrib
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
opts = "--ignore-missing-ipkg -Wno-shadowing"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
package linear
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
options = "--ignore-missing-ipkg"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
package network
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
opts = "--ignore-missing-ipkg"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
package papers
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
depends = contrib, linear
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
package prelude
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
opts = "--ignore-missing-ipkg --no-prelude"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
package test
|
||||
version = 0.6.9
|
||||
version = 0.7.0
|
||||
|
||||
opts = "--ignore-missing-ipkg"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user