Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ cabal.project.local
/.TAGS*
kore-exec.tar.gz
hie.yaml
.hie/
22 changes: 22 additions & 0 deletions kore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,28 @@ All notable changes to this project will be documented in this file.

### Fixed

## [0.42.0.0] - 2021-03-17

### Added

- `kore-repl` accepts the `--bug-report` and `--no-bug-report` options. (#2462)

### Changed

- Apply user-defined equations as written, instead of simplifying the left-hand
side during initialization. (#2392)
- Match `#as` (`\and`) patterns correctly, instead of relying on simplifying
them during initialization. (#2392)

### Fixed

- A performance regression related to strictness is fixed. (#2447)
- `kore-exec` distinguishes `\bottom` from stuck states, instead of reporting
the last defined state as stuck. (#2451)
- Errors are reported on `stderr` instead of `stdout`. (#2458)
- Applying user-defined equations is more efficient. (#2438)
- `kore-exec` reports an error when any input file is missing. (#2446)

## [0.41.0.0] - 2021-03-05

### Changed
Expand Down
Loading