Skip to content

Commit cf1dd5b

Browse files
authored
Merge pull request #36 from pmbittner/update-agda-version-documentation
Update the Agda version documentation
2 parents 8087550 + 56ac0dc commit cf1dd5b

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is the supplementary Agda library for our paper _On the Expressive Power of
66

77
## Setup
88

9-
The library needs Agda version 2.6.3 (newer version should also work but we did not test them). We tested our setup on Ubuntu (inside windows subsystem for linux (WSL 2)), Manjaro, and NixOS. The only dependency of this library is the Agda standard library which is shipped as a git submodule within the `agda-stdlib` directory (already contained within the zip file of the supplementary material).
9+
The library needs Agda version 2.6.4.3 (newer version should also work but we did not test them). We tested our setup on Ubuntu (inside windows subsystem for linux (WSL 2)), Manjaro, and NixOS. The only dependency of this library is the Agda standard library which is shipped as a git submodule within the `agda-stdlib` directory (already contained within the zip file of the supplementary material).
1010

1111
### Installation
1212

@@ -61,10 +61,10 @@ TL;DR: In summary, when following the book, you have to do:
6161

6262
```shell
6363
cabal update
64-
cabal install Agda-2.6.3
64+
cabal install Agda-2.6.4.3
6565
```
6666

67-
Detailed installation instructions can also be found [in the official documentation](https://agda.readthedocs.io/en/v2.6.3/getting-started/installation.html), too.
67+
Detailed installation instructions can also be found [in the official documentation](https://agda.readthedocs.io/en/v2.6.4.3/getting-started/installation.html), too.
6868

6969
3. Finding the standard library: Agda looks for its dependencies in a directory specified by the environment variable `AGDA_DIR`. The provided makefile sets this environment variable temporarily, and locally during the build process to the `.libs` directory within this repository. (Your global setup will not be affected). If you want to run `agda` manually, or if you want to work on this project in an editor (e.g., emacs) then you have to set this environment variable to the libs directory in this repository.
7070

@@ -109,5 +109,5 @@ The library is organized as follows:
109109
- [src/Data/IndexedSet.lagda.md](src/Data/IndexedSet.lagda.md) implements the theory of indexed sets with various operators and equational reasoning.
110110
- [src/Test/Experiments/RoundTrip.agda](src/Test/Experiments/RoundTrip.agda) implements the round-trip for our demo, including our sandwich running example. This file may serve as an entry point and example on how to run the compilers implemented in the library.
111111

112-
[agda-badge-version-svg]: https://img.shields.io/badge/agda-v2.6.3-blue.svg
113-
[agda-badge-version-url]: https://github.com/agda/agda/releases/tag/v2.6.3
112+
[agda-badge-version-svg]: https://img.shields.io/badge/agda-v2.6.4.3-blue.svg
113+
[agda-badge-version-url]: https://github.com/agda/agda/releases/tag/v2.6.4.3

makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: andrun check check-all check-everything build build-2.6.3 run clean
1+
.PHONY: andrun check check-all check-everything build build-2.6.4.3 run clean
22

33
andrun : build run
44

@@ -14,8 +14,8 @@ check-everything: src/Everything.agda
1414
build:
1515
env AGDA_DIR="./libs" agda --compile src/Main.agda
1616

17-
build-2.6.3:
18-
env AGDA_DIR="./libs" agda-2.6.3 --compile src/Main.agda
17+
build-2.6.4.3:
18+
env AGDA_DIR="./libs" agda-2.6.4.3 --compile src/Main.agda
1919

2020
run:
2121
./src/Main

0 commit comments

Comments
 (0)