Skip to content

Commit d18be99

Browse files
authored
kore-0.39.0.0 (#2388)
1 parent 266597e commit d18be99

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

kore/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,26 @@ All notable changes to this project will be documented in this file.
1414

1515
### Fixed
1616

17+
## [0.39.0.0] - 2021-02-04
18+
19+
### Added
20+
21+
- `kore-parser` accepts the `--pattern` argument multiple times. It will
22+
validate all the patterns with a single definition. (#2369)
23+
24+
### Changed
25+
26+
- `kore-exec --version` will report the version number and Git commit, but not
27+
the build date. The build date was never reported correctly anyway. (#2370)
28+
29+
### Fixed
30+
31+
- The priority of equations is respected again. (#2366)
32+
- Terms are still equal if the backend has inferred that one is defined but not
33+
the other. (#2372)
34+
- Uninterpreted functions appearing in the keys of maps and sets are handled
35+
correctly. (#2323)
36+
1737
## [0.38.0.0] - 2021-01-24
1838

1939
### Added

kore/kore.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ cabal-version: 2.2
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 1eb807e1a58c0a657f51fd08934c8a7e171988a07bcd9e0e4c098055595b6ac4
7+
-- hash: 7e4a37b77d7b81a22960b085c7c033ee8536b5990c1d4567ffca224c79a1e2aa
88

99
name: kore
10-
version: 0.38.0.0
10+
version: 0.39.0.0
1111
description: Please see the [README](README.md) file.
1212
category: Language
1313
homepage: https://github.com/kframework/kore#readme

kore/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: kore
2-
version: 0.38.0.0
2+
version: 0.39.0.0
33
github: "kframework/kore"
44
license: NCSA
55
license-file: LICENSE

nix/kore.nix.d/kore.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
flags = { release = false; threaded = true; };
1212
package = {
1313
specVersion = "2.2";
14-
identifier = { name = "kore"; version = "0.38.0.0"; };
14+
identifier = { name = "kore"; version = "0.39.0.0"; };
1515
license = "NCSA";
1616
copyright = "2018-2020 Runtime Verification Inc";
1717
maintainer = "thomas.tuegel@runtimeverification.com";

0 commit comments

Comments
 (0)