Skip to content

Commit 2330af4

Browse files
Final updates for v2.3 release
1 parent 5f8f309 commit 2330af4

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Version 2.3-rc1
2-
===============
1+
Version 2.3
2+
===========
33

44
The library has been tested using Agda 2.7.0 and 2.8.0.
55

CITATION.cff

Lines changed: 2 additions & 2 deletions
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.1.1
7-
date-released: 2024-09-07
6+
version: 2.3.0
7+
date-released: 2025-08-02
88
url: "https://github.com/agda/agda-stdlib"

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
[![Ubuntu build](https://github.com/agda/agda-stdlib/actions/workflows/ci-ubuntu.yml/badge.svg?branch=experimental)](https://github.com/agda/agda-stdlib/actions/workflows/ci-ubuntu.yml)
44

5-
**Note**: The library is currently tracking Agda 2.8.0 release candidate 3 in preparation for the release of Agda 2.8.0 and version 2.3 of the library. You will need to have the release candidate installed in order to type-check it.
6-
75
The Agda standard library
86
=========================
97

agda-stdlib-utils.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: agda-stdlib-utils
3-
version: 2.2
3+
version: 2.3
44
build-type: Simple
55
description: Helper programs for setting up the Agda standard library.
66
license: MIT

doc/README.agda

Lines changed: 3 additions & 2 deletions
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.3-dev
6+
-- The Agda standard library, version 2.3
77
--
88
-- Authors: Nils Anders Danielsson, Matthew Daggitt, Guillaume Allais
99
-- with contributions from Andreas Abel, Stevan Andjelkovic,
@@ -19,7 +19,8 @@ module README where
1919
-- and other anonymous contributors.
2020
------------------------------------------------------------------------
2121

22-
-- This version of the library has been tested using Agda 2.7.0
22+
-- This version of the library has been tested using Agda 2.7.0 and
23+
-- 2.8.0
2324

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

doc/installation-guide.md

Lines changed: 6 additions & 6 deletions
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.2 of the standard library with Agda v2.7.0 or v2.7.0.1. You can find the correct version of the library to use for different Agda versions on the [Agda Wiki](https://wiki.portal.chalmers.se/agda/Libraries/StandardLibrary).
6+
Use version v2.3 of the standard library with Agda v2.7.0 or v2.7.0.1. You can find the correct version of the library to use for different Agda versions on the [Agda Wiki](https://wiki.portal.chalmers.se/agda/Libraries/StandardLibrary).
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.2 of the standard library. This can either be
11+
2. Download the tarball of v2.3 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.gz https://github.com/agda/agda-stdlib/archive/v2.2.tar.gz
15+
wget -O agda-stdlib.tar.gz https://github.com/agda/agda-stdlib/archive/v2.3.tar.gz
1616
```
1717
Note that you can replace `wget` with other popular tools such as `curl` and that
18-
you can replace `2.2` with any other version of the library you desire.
18+
you can replace `2.3` 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.2 of the standard library with Agda v2.7.0 or v2.7.0.1. You can f
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.2
29+
cd agda-stdlib-2.3
3030
cabal install
3131
```
3232

@@ -42,7 +42,7 @@ Use version v2.2 of the standard library with Agda v2.7.0 or v2.7.0.1. You can f
4242
6. Register the standard library with Agda's package system by adding
4343
the following line to `$AGDA_DIR/libraries`:
4444
```
45-
$HERE/agda-stdlib-2.2/standard-library.agda-lib
45+
$HERE/agda-stdlib-2.3/standard-library.agda-lib
4646
```
4747

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

0 commit comments

Comments
 (0)