Skip to content

Commit 97bc55e

Browse files
Final admin changes
1 parent d3c5037 commit 97bc55e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Version 2.1-dev
2-
===============
1+
Version 2.1
2+
===========
33

44
The library has been tested using Agda 2.6.4.3.
55

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ message: "If you use this software, please cite it as below."
33
authors:
44
- name: "The Agda Community"
55
title: "Agda Standard Library"
6-
version: 2.0
7-
date-released: 2023-12-11
6+
version: 2.1
7+
date-released: 2024-07-27
88
url: "https://github.com/agda/agda-stdlib"

doc/README.agda

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module README where
44

55
------------------------------------------------------------------------
6-
-- The Agda standard library, version 2.0
6+
-- The Agda standard library, version 2.1
77
--
88
-- Authors: Nils Anders Danielsson, Matthew Daggitt, Guillaume Allais
99
-- with contributions from Andreas Abel, Stevan Andjelkovic,
@@ -19,7 +19,7 @@ module README where
1919
-- and other anonymous contributors.
2020
------------------------------------------------------------------------
2121

22-
-- This version of the library has been tested using Agda 2.6.4.
22+
-- This version of the library has been tested using Agda 2.6.4.X
2323

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

doc/installation-guide.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ Installation instructions
33

44
Note: the full story on installing Agda libraries can be found at [readthedocs](http://agda.readthedocs.io/en/latest/tools/package-system.html).
55

6-
Use version v2.0 of the standard library with Agda 2.6.4 or 2.6.4.1.
6+
Use version v2.1 of the standard library with Agda 2.6.4 or 2.6.4.3.
77

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

11-
2. Download the tarball of v2.0 of the standard library. This can either be
11+
2. Download the tarball of v2.1 of the standard library. This can either be
1212
done manually by visiting the Github repository for the library, or via the
1313
command line as follows:
1414
```
15-
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v2.0.tar.gz
15+
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v2.1.tar.gz
1616
```
1717
Note that you can replace `wget` with other popular tools such as `curl` and that
18-
you can replace `2.0` with any other version of the library you desire.
18+
you can replace `2.1` with any other version of the library you desire.
1919

2020
3. Extract the standard library from the tarball. Again this can either be
2121
done manually or via the command line as follows:
@@ -26,7 +26,7 @@ Use version v2.0 of the standard library with Agda 2.6.4 or 2.6.4.1.
2626
4. [ OPTIONAL ] If using [cabal](https://www.haskell.org/cabal/) then run
2727
the commands to install via cabal:
2828
```
29-
cd agda-stdlib-2.0
29+
cd agda-stdlib-2.1
3030
cabal install
3131
```
3232

@@ -40,7 +40,7 @@ Use version v2.0 of the standard library with Agda 2.6.4 or 2.6.4.1.
4040
6. Register the standard library with Agda's package system by adding
4141
the following line to `$HOME/.agda/libraries`:
4242
```
43-
$HERE/agda-stdlib-2.0/standard-library.agda-lib
43+
$HERE/agda-stdlib-2.1/standard-library.agda-lib
4444
```
4545

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

0 commit comments

Comments
 (0)