Skip to content

Backport changes from 2.3 release to 2.4 #2799

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
615 changes: 615 additions & 0 deletions CHANGELOG/v2.3.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ message: "If you use this software, please cite it as below."
authors:
- name: "The Agda Community"
title: "Agda Standard Library"
version: 2.1.1
date-released: 2024-09-07
version: 2.3.0
date-released: 2025-08-02
url: "https://github.com/agda/agda-stdlib"
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

[![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)

**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.

The Agda standard library
=========================

Expand Down
12 changes: 6 additions & 6 deletions doc/installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ Installation instructions

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

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).
Use version v2.3 of the standard library with Agda v2.8.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).

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

2. Download the tarball of v2.2 of the standard library. This can either be
2. Download the tarball of v2.3 of the standard library. This can either be
done manually by visiting the Github repository for the library, or via the
command line as follows:
```
wget -O agda-stdlib.tar.gz https://github.com/agda/agda-stdlib/archive/v2.2.tar.gz
wget -O agda-stdlib.tar.gz https://github.com/agda/agda-stdlib/archive/v2.3.tar.gz
```
Note that you can replace `wget` with other popular tools such as `curl` and that
you can replace `2.2` with any other version of the library you desire.
you can replace `2.3` with any other version of the library you desire.

3. Extract the standard library from the tarball. Again this can either be
done manually or via the command line as follows:
Expand All @@ -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
4. [ OPTIONAL ] If using [cabal](https://www.haskell.org/cabal/) then run
the commands to install via cabal:
```
cd agda-stdlib-2.2
cd agda-stdlib-2.3
cabal install
```

Expand All @@ -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
6. Register the standard library with Agda's package system by adding
the following line to `$AGDA_DIR/libraries`:
```
$HERE/agda-stdlib-2.2/standard-library.agda-lib
$HERE/agda-stdlib-2.3/standard-library.agda-lib
```

Now, the standard library is ready to be used either:
Expand Down
Loading