Skip to content

Commit d622fa5

Browse files
committed
Add CITATION.cff; bump version to 1.7.3
bump to 1.7.3 in - standard-library.agda-lib - README.agda - installation-guide.txt
1 parent d883ecc commit d622fa5

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CITATION.cff

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
authors:
4+
- name: "The Agda Community"
5+
title: "Agda Standard Library"
6+
version: 1.7.3
7+
date-released: 2023-10-15
8+
url: "https://github.com/agda/agda-stdlib"

README.agda

Lines changed: 2 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 1.7.2
6+
-- The Agda standard library, version 1.7.3
77
--
88
-- Authors: Nils Anders Danielsson, Matthew Daggitt, Guillaume Allais
99
-- with contributions from Andreas Abel, Stevan Andjelkovic,
@@ -18,7 +18,7 @@ module README where
1818
-- Noam Zeilberger and other anonymous contributors.
1919
------------------------------------------------------------------------
2020

21-
-- This version of the library has been tested using Agda 2.6.2.
21+
-- This version of the library has been tested using Agda 2.6.4.
2222

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

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.2 of the standard library with Agda 2.6.2.
4+
Use version v1.7.3 of the standard library with Agda 2.6.4.
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.2 of the standard library. This can either be
9+
2. Download the tarball of v1.7.3 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.2.tar.gz
13+
wget -O agda-stdlib.tar https://github.com/agda/agda-stdlib/archive/v1.7.3.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.2` with any other version of the library you desire.
16+
you can replace `1.7.3` 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.2 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.2
27+
cd agda-stdlib-1.7.3
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.2/standard-library.agda-lib
34+
$HERE/agda-stdlib-1.7.3/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,4 +1,4 @@
1-
name: standard-library-1.7.2
1+
name: standard-library-1.7.3
22
include: src
33
flags:
44
--warning=noUnsupportedIndexedMatch

0 commit comments

Comments
 (0)