Skip to content

Commit dffb802

Browse files
Updated documentation for v1.1
1 parent b8700e3 commit dffb802

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

CHANGELOG.md

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

4-
The library has been tested using Agda version 2.6.0.
4+
The library has been tested using Agda version 2.6.0.1.
55

66
Changes since 1.0.1:
77

README.agda

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

33
------------------------------------------------------------------------
4-
-- The Agda standard library, development version
4+
-- The Agda standard library, version 1.1
55
--
66
-- Authors: Nils Anders Danielsson, Matthew Daggitt, Guillaume Allais
77
-- with contributions from Andreas Abel, Stevan Andjelkovic,
@@ -16,7 +16,7 @@ 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.0.
19+
-- This version of the library has been tested using Agda 2.6.0.1.
2020

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ You can browse the library source code in glorious clickable html
1717
## Installation instructions
1818

1919
See the instructions [here](https://github.com/agda/agda-stdlib/blob/master/notes/installation-guide.md)
20-
for how to install version 1.0.1 of the standard library.
20+
for how to install version 1.1 of the standard library.
2121

2222
#### Old versions of Agda
2323

lib.cabal

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

3737
6. [ OPTIONAL ] To use the standard library in your project `$PROJECT`,

notes/release-guide.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ procedure should be followed:
1111

1212
* Update `notes/installation-guide.txt`
1313

14-
* Finish the CHANGELOG.
14+
* Update `CHANGELOG.md`.
1515

1616
* Update the copyright year range in the LICENSE file, if necessary.
1717

0 commit comments

Comments
 (0)