Skip to content

Commit 9f929b4

Browse files
Updated documentation for v1.3 release
1 parent fcef696 commit 9f929b4

File tree

6 files changed

+13
-17
lines changed

6 files changed

+13
-17
lines changed

CHANGELOG.md

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

4-
The library has been tested using Agda version 2.6.1 release candidate 2.
4+
The library has been tested using Agda version 2.6.1.
55

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

LICENCE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2007-2019 Nils Anders Danielsson, Ulf Norell, Shin-Cheng
1+
Copyright (c) 2007-2020 Nils Anders Danielsson, Ulf Norell, Shin-Cheng
22
Mu, Bradley Hardy, Samuel Bronson, Dan Doel, Patrik Jansson,
33
Liang-Ting Chen, Jean-Philippe Bernardy, Andrés Sicard-Ramírez,
44
Nicolas Pouillard, Darin Morrison, Peter Berry, Daniel Brown,

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, version 1.3-dev
4+
-- The Agda standard library, version 1.3
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.1.
19+
-- This version of the library has been tested using Agda 2.6.1.
2020

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

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
The Agda standard library
44
=========================
55

6-
**PLEASE NOTE**: due to the imminent release of Agda 2.6.1, both the `master`
7-
and the `experimental` branches currently require the latest development
8-
version of Agda.
9-
106
The standard library aims to contain all the tools needed to write both
117
programs and proofs easily. While we always try and write efficient
128
code, we prioritize ease of proof over type-checking and normalization

lib.cabal

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

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

0 commit comments

Comments
 (0)