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
24 changes: 24 additions & 0 deletions kore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,30 @@ All notable changes to this project will be documented in this file.

### Fixed

## [0.38.0.0] - 2021-01-24

### Added

- Add profiling traces for rewriting and simplification during ordinary
execution. (#2331)

### Changed

- Apply symbolic simplification rules to hook `KEQUAL.eq` under `\and` and
`\equals`. (#2346)
- Include `result.kore` in output with `--bug-report`. (#2018)
- Predicates have a distinguished internal representation. (#2099)
- Unification problems in the argument positions of equations are solved during
initialization. (#2326)

### Fixed

- `kore-repl` no longer reports all remaining states (after rewriting) as stuck.
(#2335)
- The bounded model checker returns `\top` when the property holds up to the
specified bound, but emits a warning if the bound was reached before execution
finished. (#2342)

## [0.37.0.0] - 2021-01-07

### Added
Expand Down
4 changes: 2 additions & 2 deletions kore/kore.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ cabal-version: 2.2
--
-- see: https://github.com/sol/hpack
--
-- hash: 14a9c3fb13f5926dbd7132316a785e05c02d496c072bab9f8bd7533b1cbc8d41
-- hash: 31c0153b51498e9307cfa8992158de791fb8824f02b0c299f2e0b5dd9a03eab8

name: kore
version: 0.37.0.0
version: 0.38.0.0
description: Please see the [README](README.md) file.
category: Language
homepage: https://github.com/kframework/kore#readme
Expand Down
2 changes: 1 addition & 1 deletion kore/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: kore
version: 0.37.0.0
version: 0.38.0.0
github: "kframework/kore"
license: NCSA
license-file: LICENSE
Expand Down
2 changes: 1 addition & 1 deletion nix/kore.nix.d/kore.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
flags = { release = false; threaded = true; };
package = {
specVersion = "2.2";
identifier = { name = "kore"; version = "0.37.0.0"; };
identifier = { name = "kore"; version = "0.38.0.0"; };
license = "NCSA";
copyright = "2018-2020 Runtime Verification Inc";
maintainer = "thomas.tuegel@runtimeverification.com";
Expand Down