Skip to content

Commit

Permalink
Merge branch 'release-v0.5.4'
Browse files Browse the repository at this point in the history
* release-v0.5.4:
  Bump version and update changelog
  Try decomposing applications before evalution when unifying
  update action source
  Add missing permissions to workflow binaries.yml
  • Loading branch information
fizruk committed Aug 18, 2023
2 parents 5da0aaf + 9127018 commit 5fbbbe7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ghcjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
keep-outputs = true
- name: Restore and cache Nix store
uses: deemp/cache-nix-too@v1
uses: nix-community/cache-nix-action@v1
with:
key: ${{ runner.os }}-nix-${{ hashfiles('./flake.nix', './flake.lock', '.github/workflows/ghcjs.yml') }}
restore-keys: |
Expand Down
7 changes: 7 additions & 0 deletions rzk/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to the
[Haskell Package Versioning Policy](https://pvp.haskell.org/).

## v0.5.4 — 2022-08-19

This version contains minor improvements:

1. Improve typechecking by trying an easier unification strategy first (see [#76](https://github.com/rzk-lang/rzk/pull/76));
2. Update GitHub Action for Nix (see [#74](https://github.com/rzk-lang/rzk/pull/74)).

## v0.5.3 — 2022-07-12

This version contains a few minor improvements:
Expand Down
2 changes: 1 addition & 1 deletion rzk/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rzk
version: 0.5.3
version: 0.5.4
github: "rzk-lang/rzk"
license: BSD3
author: "Nikolai Kudasov"
Expand Down
2 changes: 1 addition & 1 deletion rzk/rzk.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: rzk
version: 0.5.3
version: 0.5.4
synopsis: An experimental proof assistant for synthetic ∞-categories
description: Please see the README on GitHub at <https://github.com/rzk-lang/rzk#readme>
category: Dependent Types
Expand Down
2 changes: 1 addition & 1 deletion rzk/rzk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}:
mkDerivation {
pname = "rzk";
version = "0.5.3";
version = "0.5.4";
src = ./.;
isLibrary = true;
isExecutable = true;
Expand Down

0 comments on commit 5fbbbe7

Please sign in to comment.