Skip to content

Commit d69d74c

Browse files
felixwellenphijor
andauthored
Release for agda 2.6.4.1 (#1083)
* remove 'suggested' heap size from RTS options in makefile The suggested heap size also seems to set a maximum. I don't why we have a suggested heap size anyway, so I just removed that, since make failed with agda 2.6.4.1, compiled with ghc 9.8.1. * incease agda version, see if it fails * see if there even is a ci-problem with the makefile * remove 'suggested' heap size from RTS options in makefile The suggested heap size also seems to set a maximum. I don't why we have a suggested heap size anyway, so I just removed that, since make failed with agda 2.6.4.1, compiled with ghc 9.8.1. * incease agda version, see if it fails * see if there even is a ci-problem with the makefile * switch the heap suggestions off again * README: update version table * update version everywhere to 0.7 * nix: Update flake inputs * fix * add default max heap size * set release date to today * set release date to today --------- Co-authored-by: Philipp Joram <[email protected]>
1 parent 4f73645 commit d69d74c

File tree

7 files changed

+28
-27
lines changed

7 files changed

+28
-27
lines changed

.github/workflows/ci-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242
########################################################################
4343

4444
env:
45-
AGDA_BRANCH: v2.6.4
45+
AGDA_BRANCH: v2.6.4.1
4646
GHC_VERSION: 9.4.7
4747
CABAL_VERSION: 3.6.2.0
4848
CABAL_INSTALL: cabal install --overwrite-policy=always --ghc-options='-O1 +RTS -M6G -RTS'

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: "Cubical Agda Library"
6-
version: 0.6
7-
date-released: 2023-10-24
6+
version: 0.7
7+
date-released: 2024-02-12
88
url: "https://github.com/agda/cubical"

GNUmakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ AGDA_BIN?=agda
22
AGDA_FLAGS?=-W error
33
AGDA_EXEC?=$(AGDA_BIN) $(AGDA_FLAGS)
44
FIX_WHITESPACE?=fix-whitespace
5-
RTS_OPTIONS=+RTS -H6G -RTS
5+
RTS_OPTIONS=+RTS -M32G -RTS
66
AGDA=$(AGDA_EXEC) $(RTS_OPTIONS)
77
RUNHASKELL?=runhaskell
88
EVERYTHINGS=$(RUNHASKELL) ./Everythings.hs
@@ -31,7 +31,7 @@ check-whitespace:
3131

3232
.PHONY : check-everythings
3333
check-everythings:
34-
$(EVERYTHINGS) check-except Experiments
34+
$(EVERYTHINGS) check-except
3535

3636
.PHONY : gen-everythings
3737
gen-everythings:

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ If you want to use some specific release of Agda,
1515
the following table lists which releases of Agda you can use with which release of this library.
1616
Agda versions as written below, correspond to tags.
1717

18-
| cubical library version | Agda versions |
19-
|-------------------------|-------------------|
20-
| `current master` | `v2.6.4` |
21-
| `v0.6` | `v2.6.4` |
22-
| `v0.5` | `v2.6.3` `v2.6.4` |
23-
| `v0.4` | `v2.6.2.2` |
24-
| `v0.3` | `v2.6.2` |
25-
| `v0.2` | `v2.6.1.3` |
26-
| `v0.1` | `v2.6.0.1` |
18+
| cubical library version | Agda versions |
19+
|-------------------------|---------------------|
20+
| current master | `v2.6.4` `v2.6.4.1` |
21+
| `v0.7` | `v2.6.4` `v2.6.4.1` |
22+
| `v0.6` | `v2.6.4` |
23+
| `v0.5` | `v2.6.3` `v2.6.4` |
24+
| `v0.4` | `v2.6.2.2` |
25+
| `v0.3` | `v2.6.2` |
26+
| `v0.2` | `v2.6.1.3` |
27+
| `v0.1` | `v2.6.0.1` |
2728

2829
For example, if you have Agda 2.6.2.2, you can switch to version 0.4 of the cubical library with
2930
```

cubical.agda-lib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: cubical-0.6
1+
name: cubical-0.7
22
include: .
33
depend:
44
flags: --cubical --no-import-sorts -WnoUnsupportedIndexedMatch

flake.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
flake = false;
99
};
1010
inputs.agda = {
11-
url = "github:agda/agda/v2.6.4";
11+
url = "github:agda/agda/v2.6.4.1";
1212
inputs = {
1313
nixpkgs.follows = "nixpkgs";
1414
flake-utils.follows = "flake-utils";
@@ -21,7 +21,7 @@
2121
overlay = final: prev: {
2222
cubical = final.agdaPackages.mkDerivation rec {
2323
pname = "cubical";
24-
version = "0.6";
24+
version = "0.7";
2525

2626
src = cleanSourceWith {
2727
filter = name: type:

0 commit comments

Comments
 (0)