Skip to content

kore-0.41.0.0 #2444

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

Merged
merged 4 commits into from
Mar 8, 2021
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
12 changes: 12 additions & 0 deletions kore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ All notable changes to this project will be documented in this file.

### Fixed

## [0.41.0.0] - 2021-03-05

### Changed

- Clauses in the side condition of a configuration are considered when
simplifying applying equations to other clauses in the side condition (#2393).

### Fixed

- Values of the `BYTES.Bytes` sort are unparsed in the correct 8-bit encoding
instead of the base-16 encoding. (#2411)

## [0.40.0.0] - 2021-02-17

### Fixed
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: 03c98e7a7113ac321409caf3539c3987574f8cb7fa4049e7fb285d8c462de491
-- hash: 2702a5d875e9f185a4aedc5fdcafa951249ccd4ef5edab6f1e96689991c8f13f

name: kore
version: 0.40.0.0
version: 0.41.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.40.0.0
version: 0.41.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.40.0.0"; };
identifier = { name = "kore"; version = "0.41.0.0"; };
license = "NCSA";
copyright = "2018-2020 Runtime Verification Inc";
maintainer = "[email protected]";
Expand Down