Skip to content

Commit

Permalink
Bump versions and constraints. Refs #455.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanperez-keera committed Sep 8, 2023
1 parent 7c4a509 commit 3006a79
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions copilot-c99/copilot-c99.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version : >= 1.10
name : copilot-c99
version : 3.16
version : 3.16.1
synopsis : A compiler for Copilot targeting C99.
description :
This package is a back-end from Copilot to C.
Expand Down Expand Up @@ -45,9 +45,9 @@ library
, mtl >= 2.2 && < 2.4
, pretty >= 1.1 && < 1.2

, copilot-core >= 3.16 && < 3.17
, language-c99 >= 0.2.0 && < 0.3
, language-c99-simple >= 0.2.2 && < 0.3
, copilot-core >= 3.16.1 && < 3.17
, language-c99 >= 0.2.0 && < 0.3
, language-c99-simple >= 0.2.2 && < 0.3

exposed-modules : Copilot.Compile.C99

Expand Down
2 changes: 1 addition & 1 deletion copilot-core/copilot-core.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: copilot-core
version: 3.16
version: 3.16.1
synopsis: An intermediate representation for Copilot.
description:
Intermediate representation for Copilot.
Expand Down
4 changes: 2 additions & 2 deletions copilot-interpreter/copilot-interpreter.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: copilot-interpreter
version: 3.16
version: 3.16.1
synopsis: Interpreter for Copilot.
description:
Interpreter for Copilot.
Expand Down Expand Up @@ -44,7 +44,7 @@ library
base >= 4.9 && < 5,
pretty >= 1.0 && < 1.2,

copilot-core >= 3.16 && < 3.17
copilot-core >= 3.16.1 && < 3.17

exposed-modules:

Expand Down
8 changes: 4 additions & 4 deletions copilot-language/copilot-language.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: copilot-language
version: 3.16
version: 3.16.1
synopsis: A Haskell-embedded DSL for monitoring hard real-time
distributed systems.
description:
Expand Down Expand Up @@ -42,9 +42,9 @@ library
, data-reify >= 0.6 && < 0.7
, mtl >= 2.0 && < 3

, copilot-core >= 3.16 && < 3.17
, copilot-interpreter >= 3.16 && < 3.17
, copilot-theorem >= 3.16 && < 3.17
, copilot-core >= 3.16.1 && < 3.17
, copilot-interpreter >= 3.16.1 && < 3.17
, copilot-theorem >= 3.16.1 && < 3.17

exposed-modules: Copilot.Language
, Copilot.Language.Operators.BitWise
Expand Down
4 changes: 2 additions & 2 deletions copilot-libraries/copilot-libraries.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: copilot-libraries
version: 3.16
version: 3.16.1
synopsis: Libraries for the Copilot language.
description:
Libraries for the Copilot language.
Expand Down Expand Up @@ -41,7 +41,7 @@ library
, containers >= 0.4 && < 0.7
, mtl >= 2.0 && < 2.4
, parsec >= 2.0 && < 3.2
, copilot-language >= 3.16 && < 3.17
, copilot-language >= 3.16.1 && < 3.17

exposed-modules:
Copilot.Library.Libraries
Expand Down
4 changes: 2 additions & 2 deletions copilot-prettyprinter/copilot-prettyprinter.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: copilot-prettyprinter
version: 3.16
version: 3.16.1
synopsis: A prettyprinter of Copilot Specifications.
description:
A prettyprinter of Copilot specifications.
Expand Down Expand Up @@ -45,7 +45,7 @@ library
base >= 4.9 && < 5,
pretty >= 1.0 && < 1.2,

copilot-core >= 3.16 && < 3.17
copilot-core >= 3.16.1 && < 3.17

exposed-modules:

Expand Down
6 changes: 3 additions & 3 deletions copilot-theorem/copilot-theorem.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description:
<https://copilot-language.github.io>.


version : 3.16
version : 3.16.1
license : BSD3
license-file : LICENSE
maintainer : Ivan Perez <[email protected]>
Expand Down Expand Up @@ -63,8 +63,8 @@ library
, xml >= 1.3 && < 1.4
, what4 >= 1.3 && < 1.5

, copilot-core >= 3.16 && < 3.17
, copilot-prettyprinter >= 3.16 && < 3.17
, copilot-core >= 3.16.1 && < 3.17
, copilot-prettyprinter >= 3.16.1 && < 3.17

exposed-modules : Copilot.Theorem
, Copilot.Theorem.Prove
Expand Down
14 changes: 7 additions & 7 deletions copilot/copilot.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: copilot
version: 3.16
version: 3.16.1
cabal-version: >= 1.10
license: BSD3
license-file: LICENSE
Expand Down Expand Up @@ -52,12 +52,12 @@ library
, directory >= 1.3 && < 1.4
, filepath >= 1.4 && < 1.5

, copilot-core >= 3.16 && < 3.17
, copilot-theorem >= 3.16 && < 3.17
, copilot-language >= 3.16 && < 3.17
, copilot-libraries >= 3.16 && < 3.17
, copilot-c99 >= 3.16 && < 3.17
, copilot-prettyprinter >= 3.16 && < 3.17
, copilot-core >= 3.16.1 && < 3.17
, copilot-theorem >= 3.16.1 && < 3.17
, copilot-language >= 3.16.1 && < 3.17
, copilot-libraries >= 3.16.1 && < 3.17
, copilot-c99 >= 3.16.1 && < 3.17
, copilot-prettyprinter >= 3.16.1 && < 3.17


exposed-modules: Language.Copilot, Language.Copilot.Main
Expand Down

0 comments on commit 3006a79

Please sign in to comment.