Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth-krishna committed Mar 12, 2024
1 parent f8a0690 commit b7c522a
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 8 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.0.0 -- 2024-03-12
* Add records to the Inferno language

## 0.10.1.0 -- 2024-01-30
* Fix `ToValue` instances for functions and `ImplicitCast`

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.10.1.0
version: 0.11.0.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 @@ -59,7 +59,7 @@ library
, extra >= 1.7.12 && < 1.8
, generic-lens >= 2.2.1 && < 2.3
, inferno-vc >= 0.3.0 && < 0.4
, inferno-types >= 0.3.0 && < 0.4
, 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
Expand Down
3 changes: 3 additions & 0 deletions inferno-lsp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Revision History for inferno-lsp
*Note*: we use https://pvp.haskell.org/ (MAJOR.MAJOR.MINOR.PATCH)

## 0.2.3.0 -- 2024-03-12
* Update inferno-types and inferno-core version; fix `parseAndInferTypeReps`

## 0.2.2.0 -- 2024-01-29
* Update inferno-core version

Expand Down
6 changes: 3 additions & 3 deletions inferno-lsp/inferno-lsp.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: inferno-lsp
version: 0.2.2.0
version: 0.2.3.0
synopsis: LSP for Inferno
description: A language server protocol implementation for the Inferno language
category: IDE,DSL,Scripting
Expand Down Expand Up @@ -32,8 +32,8 @@ library
, bytestring >= 0.10.10 && < 0.12
, co-log-core >= 0.3.1 && < 0.4
, containers >= 0.6.2 && < 0.7
, inferno-core >= 0.8.0 && < 0.11
, inferno-types >= 0.2.0 && < 0.4
, inferno-core >= 0.8.0 && < 0.12
, inferno-types >= 0.2.0 && < 0.5
, inferno-vc >= 0.3.0 && < 0.4
, lsp >= 1.6.0 && < 1.7
, lsp-types >= 1.6.0 && < 1.7
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.0.0 -- 2024-03-12
* Add record types to InfernoType, Value, and Expr

## 0.3.0.0 -- 2023-11-01
* Fix pretty printing of types to be parser-copmatible. Now prints as `bool{#true, #false}`

Expand Down
2 changes: 1 addition & 1 deletion 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.3.0.0
version: 0.4.0.0
synopsis: Core types for Inferno
description: Core types for the Inferno language
category: DSL,Scripting
Expand Down
3 changes: 3 additions & 0 deletions inferno-vc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Revision History for inferno-vc
*Note*: we use https://pvp.haskell.org/ (MAJOR.MAJOR.MINOR.PATCH)

## 0.3.5.0 -- 2024-03-12
* Update inferno-types version

## 0.3.4.0 -- 2024-02-28
* Add a parameter to runServerConfig to allow wai middleware to be applied
* Extend VCServerError type with a constructor for storage bakcend to inject
Expand Down
4 changes: 2 additions & 2 deletions inferno-vc/inferno-vc.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: inferno-vc
version: 0.3.4.0
version: 0.3.5.0
synopsis: Version control server for Inferno
description: A version control server for Inferno scripts
category: DSL,Scripting
Expand Down Expand Up @@ -48,7 +48,7 @@ library
, generic-lens >= 2.2.1 && < 2.3
, http-client >= 0.7.13 && < 0.8
, http-types >= 0.12.3 && < 0.13
, inferno-types >= 0.2.0 && < 0.4
, inferno-types >= 0.2.0 && < 0.5
, lens >= 5.2 && < 5.3
, mtl >= 2.2.2 && < 2.3
, plow-log >= 0.1.6 && < 0.2
Expand Down

0 comments on commit b7c522a

Please sign in to comment.