Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Agda *2.6.3 -> 2.6.4 #936

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:
merge_group:

env:
DEFAULT_AGDA_VERSION: "2.6.3"
DEFAULT_AGDA_STDLIB_VERSION: "1.7.2"
DEFAULT_AGDA_VERSION: "2.6.4"
DEFAULT_AGDA_STDLIB_VERSION: "1.7.3"
DEFAULT_GHC_VERSION: "9.2.7"
DEFAULT_CABAL_VERSION: "3.10.1.0"
DEFAULT_EPUBCHECK_VERSION: "4.2.6"
Expand All @@ -38,6 +38,9 @@ jobs:
os: windows-latest

# Older versions of Agda
- name: "Build with older Agda 2.6.3"
agda-version: "2.6.3"
agda-stdlib-version: "1.7.2"
- name: "Build with older Agda 2.6.2.2"
agda-version: "2.6.2.2"
agda-stdlib-version: "1.7.1"
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ or using `ghcup tui` and choosing to `set` the appropriate tools.

### Install Agda

The easiest way to install Agda is using Cabal. PLFA uses Agda version 2.6.3. Run the following command:
The easiest way to install Agda is using Cabal. PLFA uses Agda version 2.6.4. Run the following command:

```bash
cabal update
cabal install Agda-2.6.3
cabal install Agda-2.6.4
```

This step will take a long time and a lot of memory to complete.
Expand Down Expand Up @@ -260,8 +260,8 @@ If you plan to build PLFA locally, please refer to [Contributing][plfa-contribut
[pre-commit-status-url]: https://results.pre-commit.ci/latest/github/plfa/plfa.github.io/dev
[plfa-badge-version-svg]: https://img.shields.io/github/v/tag/plfa/plfa.github.io?label=release
[plfa-badge-version-url]: https://github.com/plfa/plfa.github.io/releases/latest
[agda-badge-version-svg]: https://img.shields.io/badge/agda-v2.6.3-blue.svg
[agda-badge-version-url]: https://github.com/agda/agda/releases/tag/v2.6.3.
[agda-badge-version-svg]: https://img.shields.io/badge/agda-v2.6.4-blue.svg
[agda-badge-version-url]: https://github.com/agda/agda/releases/tag/v2.6.4.
[agda-stdlib-version-svg]: https://img.shields.io/badge/agda--stdlib-v1.7.2-blue.svg
[agda-stdlib-version-url]: https://github.com/agda/agda-stdlib/releases/tag/v1.7.2
[plfa]: https://plfa.inf.ed.ac.uk
Expand All @@ -270,12 +270,12 @@ If you plan to build PLFA locally, please refer to [Contributing][plfa-contribut
[ghcup]: https://www.haskell.org/ghcup/
[git]: https://git-scm.com/downloads
[xcode]: https://developer.apple.com/xcode/
[agda-readthedocs-installation]: https://agda.readthedocs.io/en/v2.6.3/getting-started/installation.html
[agda-readthedocs-hello-world]: https://agda.readthedocs.io/en/v2.6.3/getting-started/hello-world.html
[agda-readthedocs-holes]: https://agda.readthedocs.io/en/v2.6.3/getting-started/a-taste-of-agda.html#preliminaries
[agda-readthedocs-emacs-mode]: https://agda.readthedocs.io/en/v2.6.3/tools/emacs-mode.html
[agda-readthedocs-emacs-notation]: https://agda.readthedocs.io/en/v2.6.3/tools/emacs-mode.html#notation-for-key-combinations
[agda-readthedocs-package-system]: https://agda.readthedocs.io/en/v2.6.3/tools/package-system.html#example-using-the-standard-library
[agda-readthedocs-installation]: https://agda.readthedocs.io/en/v2.6.4/getting-started/installation.html
[agda-readthedocs-hello-world]: https://agda.readthedocs.io/en/v2.6.4/getting-started/hello-world.html
[agda-readthedocs-holes]: https://agda.readthedocs.io/en/v2.6.4/getting-started/a-taste-of-agda.html#preliminaries
[agda-readthedocs-emacs-mode]: https://agda.readthedocs.io/en/v2.6.4/tools/emacs-mode.html
[agda-readthedocs-emacs-notation]: https://agda.readthedocs.io/en/v2.6.4/tools/emacs-mode.html#notation-for-key-combinations
[agda-readthedocs-package-system]: https://agda.readthedocs.io/en/v2.6.4/tools/package-system.html#example-using-the-standard-library
[emacs]: https://www.gnu.org/software/emacs/download.html
[emacs-tour]: https://www.gnu.org/software/emacs/tour/
[emacs-home]: https://www.gnu.org/software/emacs/manual/html_node/efaq-w32/Location-of-init-file.html
Expand Down
10 changes: 10 additions & 0 deletions web/posts/2023-11-30-migration-to-agda-2-6-4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: "Migration to Agda 2.6.4"
---

We upgraded to [Agda 2.6.4][agda-2.6.4] and [version 1.7.3 of the standard library][agda-stdlib-v1.7.3]. If you want to continue working with the book, you'll have to update your versions locally. Please follow the instructions in [Getting Started](/GettingStarted/) to reinstall Agda and the standard library.

[agda-stdlib-v1.7.3]: https://github.com/agda/agda-stdlib/releases/tag/v1.7.3
"Agda standard library version 1.7.3 on GitHub"
[agda-2.6.4]: https://github.com/agda/agda/releases/tag/v2.6.4
"Agda version 2.6.4 on GitHub"
Loading