Skip to content

Commit aaa506a

Browse files
Update documentation for version 1.4
1 parent 0a7119c commit aaa506a

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Version 1.4-dev
2-
===============
1+
Version 1.4
2+
===========
33

4-
The library has been tested using Agda version 2.6.1.
4+
The library has been tested using Agda 2.6.1 and 2.6.1.1.
55

66
Highlights
77
----------

README.agda

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module README where
22

33
------------------------------------------------------------------------
4-
-- The Agda standard library, version 1.4-dev
4+
-- The Agda standard library, version 1.4
55
--
66
-- Authors: Nils Anders Danielsson, Matthew Daggitt, Guillaume Allais
77
-- with contributions from Andreas Abel, Stevan Andjelkovic,
@@ -16,7 +16,8 @@ module README where
1616
-- Noam Zeilberger and other anonymous contributors.
1717
------------------------------------------------------------------------
1818

19-
-- This version of the library has been tested using Agda 2.6.1.
19+
-- This version of the library has been tested using Agda 2.6.1 and
20+
-- 2.6.1.1.
2021

2122
-- The library comes with a .agda-lib file, for use with the library
2223
-- management system.

lib.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: lib
2-
version: 1.4-dev
2+
version: 1.4
33
cabal-version: >= 1.10
44
build-type: Simple
55
description: Helper programs.

notes/installation-guide.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
Installation instructions
22
=========================
33

4-
Use version v1.3 of the standard library with Agda 2.6.1.
4+
Use version v1.4 of the standard library with Agda 2.6.1 and 2.6.1.1.
55

66
1. Navigate to a suitable directory `$HERE` (replace appropriately) where
77
you would like to install the library.
88

9-
2. Download the tarball of v1.3 of the standard library. This can either be
9+
2. Download the tarball of v1.4 of the standard library. This can either be
1010
done manually by visiting the Github repository for the library, or via the
1111
command line as follows:
1212
```
13-
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v1.3.tar.gz
13+
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v1.4.tar.gz
1414
```
1515
Note that you can replace `wget` with other popular tools such as `curl` and that
16-
you can replace `1.3` with any other version of the library you desire.
16+
you can replace `1.4` with any other version of the library you desire.
1717

1818
3. Extract the standard library from the tarball. Again this can either be
1919
done manually or via the command line as follows:
@@ -24,14 +24,14 @@ Use version v1.3 of the standard library with Agda 2.6.1.
2424
4. [ OPTIONAL ] If using [cabal](https://www.haskell.org/cabal/) then run
2525
the commands to install via cabal:
2626
```
27-
cd agda-stdlib-1.3
27+
cd agda-stdlib-1.4
2828
cabal install
2929
```
3030

3131
5. Register the standard library with Agda's package system by adding
3232
the following line to `$HOME/.agda/libraries`:
3333
```
34-
$HERE/agda-stdlib-1.3/standard-library.agda-lib
34+
$HERE/agda-stdlib-1.4/standard-library.agda-lib
3535
```
3636

3737
Now, the standard library is ready to be used either:

notes/release-guide.txt

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ procedure should be followed:
2626
cd agda
2727
make fast-forward-std-lib
2828

29+
* Build the latest version of Agda
30+
31+
make quicker-install-bin
32+
2933
* Run the tests involving the library:
3034

3135
make test

0 commit comments

Comments
 (0)