Skip to content

Commit 1828349

Browse files
Update documentation for v1.7.2
1 parent 3b3ae46 commit 1828349

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

LICENCE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2007-2021 Nils Anders Danielsson, Ulf Norell, Shin-Cheng
1+
Copyright (c) 2007-2022 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module README where
44

55
------------------------------------------------------------------------
6-
-- The Agda standard library, version 1.7.1
6+
-- The Agda standard library, version 1.7.2
77
--
88
-- Authors: Nils Anders Danielsson, Matthew Daggitt, Guillaume Allais
99
-- with contributions from Andreas Abel, Stevan Andjelkovic,

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ Most of the library can be type-checked using the `--safe` flag. Please consult
5959
[GenerateEverything.hs](https://github.com/agda/agda-stdlib/blob/master/GenerateEverything.hs#L23)
6060
for a full list of modules that use unsafe features.
6161

62-
#### The `--without-k` flag
62+
#### The `--cubical-compatible` flag
6363

64-
Most of the library can be type-checked using the `--without-k` flag. Please consult
64+
Most of the library can be type-checked using the `--cubical-compatible` flag. Please consult
6565
[GenerateEverything.hs](https://github.com/agda/agda-stdlib/blob/master/GenerateEverything.hs#L74)
66-
for a full list of modules that use axiom K.
66+
for a full list of modules that use axiom K and are therefore incompatible.
6767

6868
## Contributing to the library
6969

notes/installation-guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
Installation instructions
22
=========================
33

4-
Use version v1.7.1 of the standard library with Agda 2.6.2.
4+
Use version v1.7.2 of the standard library with Agda 2.6.2.
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.7.1 of the standard library. This can either be
9+
2. Download the tarball of v1.7.2 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.7.1.tar.gz
13+
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v1.7.2.tar.gz
1414
```
1515
Note that you can replace `wget` with other popular tools such as `curl` and that
16-
you can replace `1.7.1` with any other version of the library you desire.
16+
you can replace `1.7.2` 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.7.1 of the standard library with Agda 2.6.2.
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.7.1
27+
cd agda-stdlib-1.7.2
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.7.1/standard-library.agda-lib
34+
$HERE/agda-stdlib-1.7.2/standard-library.agda-lib
3535
```
3636

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

standard-library.agda-lib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
name: standard-library-1.7.1
1+
name: standard-library-1.7.2
22
include: src

0 commit comments

Comments
 (0)