Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit 0f4c4a6

Browse files
authored
Merge pull request #4863 from melted/release-1.3.3
Release 1.3.3
2 parents 5ac59fd + 0bc39d4 commit 0f4c4a6

8 files changed

Lines changed: 14 additions & 10 deletions

File tree

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,18 @@ before_install:
6565
- if [ -n "$STYLISH" ]; then ./stylize.sh; exit $?; fi
6666
- if [ -n "$IDRIS2" ];
6767
then
68-
git clone https://github.com/edwinb/Idris2 &&
68+
git clone https://github.com/edwinb/Idris2-boot &&
6969
wget https://github.com/cisco/ChezScheme/archive/v9.5.2.tar.gz &&
7070
tar xvzf v9.5.2.tar.gz &&
7171
cd ChezScheme-9.5.2 &&
7272
./configure --threads --installprefix=$HOME/opt/scheme &&
7373
make -j install &&
7474
cd .. &&
7575
cabal v1-update &&
76+
travis_wait cabal v1-install --only-dependencies &&
7677
travis_wait cabal v1-install &&
7778
cd Idris2 &&
78-
make idris2 && make base && make contrib;
79+
travis_wait make idris2 && make base && make contrib;
7980
exit $?;
8081
fi
8182

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# New since last release
2+
3+
# New in 1.3.3
24
+ Updated to work with GHC 8.8 and cabal 3.0
5+
+ Bugfixes and documentation updates
36

47
# New in 1.3.2
58
+ Documentation added to proof section

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = '1.3'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '1.3.2'
64+
release = '1.3.3'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

docs/listing/idris-prompt-helloworld.txt

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

docs/listing/idris-prompt-start.txt

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

docs/parserLibrary/lexer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ input string as parameters:
239239
idris -p contrib parserEx.idr
240240
____ __ _
241241
/ _/___/ /____(_)____
242-
/ // __ / ___/ / ___/ Version 1.3.2
242+
/ // __ / ___/ / ___/ Version 1.3.3
243243
_/ // /_/ / / / (__ ) http://www.idris-lang.org/
244244
/___/\__,_/_/ /_/____/ Type :? for help
245245

idris.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Cabal-Version: 2.4
22
Name: idris
3-
Version: 1.3.2
3+
Version: 1.3.3
44
License: BSD-3-Clause
55
License-file: LICENSE
66
Author: Edwin Brady
7-
Maintainer: Edwin Brady <eb@cs.st-andrews.ac.uk>
7+
Maintainer: Niklas Larsson <niklas@mm.st>
88
Homepage: https://www.idris-lang.org/
99
Bug-reports: https://github.com/idris-lang/Idris-dev/issues
1010

@@ -44,7 +44,7 @@ Description: Idris is a general purpose language with full dependent types.
4444

4545
Build-type: Custom
4646

47-
Tested-With: GHC == 7.10.3, GHC == 8.0.1
47+
Tested-With: GHC == 8.6.5, GHC == 8.8.4
4848

4949
-- NOTE: due to https://github.com/haskell/cabal/issues/6125 the use of ** is
5050
-- heavily discouraged.

man/idris.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for Idris.
22
.\" Contact <> to correct errors or typos.
3-
.TH man 1 "23 October 2018" "1.3.2" "Idris man page"
3+
.TH man 1 "23 May 2020" "1.3.3" "Idris man page"
44
.SH NAME
55
idris -\ a general purpose pure functional programming language with dependent types.
66
.SH SYNOPSIS

0 commit comments

Comments
 (0)