Skip to content

Commit

Permalink
bump versions, add changelog entries and relax mtl bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
albertov committed Jul 25, 2024
1 parent 40633d0 commit c22f089
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions inferno-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Revision History for inferno-core
*Note*: we use https://pvp.haskell.org/ (MAJOR.MAJOR.MINOR.PATCH)

## 0.11.6.0 -- 2024-07-25
* mtl 2.3 compatibility

## 0.11.5.1 -- 2024-04-26
* Fix pretty print of Some/None pattern in error messages

Expand Down
4 changes: 2 additions & 2 deletions inferno-core/inferno-core.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: inferno-core
version: 0.11.5.1
version: 0.11.6.0
synopsis: A statically-typed functional scripting language
description: Parser, type inference, and interpreter for a statically-typed functional scripting language
category: DSL,Scripting
Expand Down Expand Up @@ -63,7 +63,7 @@ library
, inferno-types >= 0.4.0 && < 0.5
, megaparsec >= 9.2.1 && < 9.3
, memory >= 0.18.0 && < 0.19
, mtl >= 2.2.2 && < 2.3
, mtl >= 2.2.2 && < 2.4
, parser-combinators >= 1.3.0 && < 1.4
, picosat >= 0.1.6 && < 0.2
, prettyprinter >= 1.7.1 && < 1.8
Expand Down
3 changes: 3 additions & 0 deletions inferno-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Revision History for inferno-types
*Note*: we use https://pvp.haskell.org/ (MAJOR.MAJOR.MINOR.PATCH)

## 0.4.6.0 -- 2024-07-25
* mtl 2.3 compatibility

## 0.4.5.0 -- 2024-04-26
* Add `unusedVars` method for `Expr`s and tests for it

Expand Down
4 changes: 2 additions & 2 deletions inferno-types/inferno-types.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: inferno-types
version: 0.4.5.0
version: 0.4.6.0
synopsis: Core types for Inferno
description: Core types for the Inferno language
category: DSL,Scripting
Expand Down Expand Up @@ -43,7 +43,7 @@ library
, hashable >= 1.4.1 && < 1.5
, megaparsec >= 9.2.1 && < 9.3
, memory >= 0.18.0 && < 0.19
, mtl >= 2.2.2 && < 2.3
, mtl >= 2.2.2 && < 2.4
, prettyprinter >= 1.7.1 && < 1.8
, recursion-schemes >= 5.2.2.3 && < 5.3
, servant >= 0.19 && < 0.20
Expand Down

0 comments on commit c22f089

Please sign in to comment.