Skip to content

Commit 2f0fb51

Browse files
Updated documentation for v1.6 release
1 parent 84c7753 commit 2f0fb51

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

CHANGELOG.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
Version 1.6-dev
2-
===============
1+
Version 1.6
2+
===========
33

44
The library has been tested using Agda 2.6.1 and 2.6.1.3.
55

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

9-
* Drastically reorganised the module hierarchy in the dependency graph of
10-
the `IO` module so that we may compile a program as simple as hello world
11-
without pulling upwards of 130 modules.
9+
* Reorganised module hierarchy in the dependency graph of
10+
the `IO` module so that a program as simple as "Hello world" may be
11+
compiled without pulling upwards of 130 modules.
1212

1313
* First verified implementation of a sorting algorithm (available from `Data.List.Sort`).
1414

1515
* Pseudo random generators for ℕ (available from `Data.Nat.Pseudorandom.LCG`)
1616

17-
* Large increase in the number of proofs about both normalised and unnormalised rational numbers.
17+
* Drastic increase in performance of normalised rational numbers.
18+
19+
* Large number of additional proofs about both normalised and unnormalised rational numbers.
1820

19-
* Drastically increased performance of normalised rational numbers.
2021

2122
Bug-fixes
2223
---------

README.agda

+1-1
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.6-dev
4+
-- The Agda standard library, version 1.6
55
--
66
-- Authors: Nils Anders Danielsson, Matthew Daggitt, Guillaume Allais
77
-- with contributions from Andreas Abel, Stevan Andjelkovic,

agda-stdlib-utils.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: agda-stdlib-utils
2-
version: 1.6-dev
2+
version: 1.6
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.5 of the standard library with Agda 2.6.1 and 2.6.1.1.
4+
Use version v1.6 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.5 of the standard library. This can either be
9+
2. Download the tarball of v1.6 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.5.tar.gz
13+
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v1.6.tar.gz
1414
```
1515
Note that you can replace `wget` with other popular tools such as `curl` and that
16-
you can replace `1.5` with any other version of the library you desire.
16+
you can replace `1.6` 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.5 of the standard library with Agda 2.6.1 and 2.6.1.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.5
27+
cd agda-stdlib-1.6
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.5/standard-library.agda-lib
34+
$HERE/agda-stdlib-1.6/standard-library.agda-lib
3535
```
3636

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

0 commit comments

Comments
 (0)