Skip to content

Commit

Permalink
Release v0.6 for agda 2.6.4 (#1050)
Browse files Browse the repository at this point in the history
* update some call following agda's warning

* bump versions everywhere

* bump versions everywhere

* nix: flake update

* README: more working agda-versions

* deactivate ci-nix

* update release date

---------

Co-authored-by: Naïm Favier <n@monade.li>
  • Loading branch information
felixwellen and ncfavier committed Oct 24, 2023
1 parent ad4c842 commit eb6a33c
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 49 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/ci-nix.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ on:
########################################################################

env:
AGDA_BRANCH: v2.6.3
AGDA_BRANCH: v2.6.4
GHC_VERSION: 9.2.5
CABAL_VERSION: 3.6.2.0
CABAL_INSTALL: cabal install --overwrite-policy=always --ghc-options='-O1 +RTS -M6G -RTS'
Expand Down
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: "Cubical Agda Library"
version: 0.5
date-released: 2023-07-05
version: 0.6
date-released: 2023-10-24
url: "https://github.com/agda/cubical"
2 changes: 1 addition & 1 deletion Cubical/Tactics/Reflection.agda
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ get-boundary tm = unapply-path tm >>= λ where
equation-solver : List Name (Term -> Term -> TC Term) Bool Term TC Unit
equation-solver don't-Reduce mk-call debug hole =
withNormalisation false (
dontReduceDefs don't-Reduce (
withReduceDefs (false , don't-Reduce) (
do
-- | First we normalize the goal
goal inferType hole >>= reduce
Expand Down
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,18 @@ For detailed install instructions see the
[INSTALL](https://github.com/agda/cubical/blob/master/INSTALL.md)
file.
If you want to use some specific release of Agda,
the following table lists which release of Agda you can use with which release of this library.
the following table lists which releases of Agda you can use with which release of this library.
Agda versions as written below, correspond to tags.

| cubical library version | Agda version |
|-------------------------|----------------|
| `current master` | `v2.6.3` |
| `v0.5` | `v2.6.3` |
| `v0.4` | `v2.6.2.2` |
| `v0.3` | `v2.6.2` |
| `v0.2` | `v2.6.1.3` |
| `v0.1` | `v2.6.0.1` |
| cubical library version | Agda versions |
|-------------------------|-------------------|
| `current master` | `v2.6.4` |
| `v0.6` | `v2.6.4` |
| `v0.5` | `v2.6.3` `v2.6.4` |
| `v0.4` | `v2.6.2.2` |
| `v0.3` | `v2.6.2` |
| `v0.2` | `v2.6.1.3` |
| `v0.1` | `v2.6.0.1` |

For example, if you have Agda 2.6.2.2, you can switch to version 0.4 of the cubical library with
```
Expand Down
2 changes: 1 addition & 1 deletion cubical.agda-lib
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: cubical-0.5
name: cubical-0.6
include: .
depend:
flags: --cubical --no-import-sorts -WnoUnsupportedIndexedMatch
44 changes: 31 additions & 13 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
flake = false;
};
inputs.agda = {
url = "github:agda/agda/v2.6.3";
url = "github:agda/agda/v2.6.4";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
Expand All @@ -21,7 +21,7 @@
overlay = final: prev: {
cubical = final.agdaPackages.mkDerivation rec {
pname = "cubical";
version = "0.5";
version = "0.6";

src = cleanSourceWith {
filter = name: type:
Expand Down

0 comments on commit eb6a33c

Please sign in to comment.