Skip to content

Commit 2fcf3a7

Browse files
Bump versions and constraints. Refs #522.
1 parent 7c1049a commit 2fcf3a7

File tree

8 files changed

+39
-39
lines changed

8 files changed

+39
-39
lines changed

copilot-c99/copilot-c99.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version : >= 1.10
22
name : copilot-c99
3-
version : 3.19.1
3+
version : 3.20
44
synopsis : A compiler for Copilot targeting C99.
55
description :
66
This package is a back-end from Copilot to C.
@@ -45,9 +45,9 @@ library
4545
, mtl >= 2.2 && < 2.4
4646
, pretty >= 1.1 && < 1.2
4747

48-
, copilot-core >= 3.19.1 && < 3.20
49-
, language-c99 >= 0.2.0 && < 0.3
50-
, language-c99-simple >= 0.3 && < 0.4
48+
, copilot-core >= 3.20 && < 3.21
49+
, language-c99 >= 0.2.0 && < 0.3
50+
, language-c99-simple >= 0.3 && < 0.4
5151

5252
exposed-modules : Copilot.Compile.C99
5353

copilot-core/copilot-core.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: copilot-core
3-
version: 3.19.1
3+
version: 3.20
44
synopsis: An intermediate representation for Copilot.
55
description:
66
Intermediate representation for Copilot.

copilot-interpreter/copilot-interpreter.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: copilot-interpreter
3-
version: 3.19.1
3+
version: 3.20
44
synopsis: Interpreter for Copilot.
55
description:
66
Interpreter for Copilot.
@@ -44,7 +44,7 @@ library
4444
base >= 4.9 && < 5,
4545
pretty >= 1.0 && < 1.2,
4646

47-
copilot-core >= 3.19.1 && < 3.20
47+
copilot-core >= 3.20 && < 3.21
4848

4949
exposed-modules:
5050

copilot-language/copilot-language.cabal

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: copilot-language
3-
version: 3.19.1
3+
version: 3.20
44
synopsis: A Haskell-embedded DSL for monitoring hard real-time
55
distributed systems.
66
description:
@@ -35,16 +35,16 @@ source-repository head
3535
library
3636
default-language: Haskell2010
3737
hs-source-dirs: src
38-
build-depends: base >= 4.9 && < 5
38+
build-depends: base >= 4.9 && < 5
3939

40-
, array >= 0.5 && < 0.6
41-
, containers >= 0.4 && < 0.7
42-
, data-reify >= 0.6 && < 0.7
43-
, mtl >= 2.0 && < 3
40+
, array >= 0.5 && < 0.6
41+
, containers >= 0.4 && < 0.7
42+
, data-reify >= 0.6 && < 0.7
43+
, mtl >= 2.0 && < 3
4444

45-
, copilot-core >= 3.19.1 && < 3.20
46-
, copilot-interpreter >= 3.19.1 && < 3.20
47-
, copilot-theorem >= 3.19.1 && < 3.20
45+
, copilot-core >= 3.20 && < 3.21
46+
, copilot-interpreter >= 3.20 && < 3.21
47+
, copilot-theorem >= 3.20 && < 3.21
4848

4949
exposed-modules: Copilot.Language
5050
, Copilot.Language.Operators.BitWise

copilot-libraries/copilot-libraries.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: copilot-libraries
3-
version: 3.19.1
3+
version: 3.20
44
synopsis: Libraries for the Copilot language.
55
description:
66
Libraries for the Copilot language.
@@ -36,12 +36,12 @@ library
3636

3737
hs-source-dirs: src
3838

39-
build-depends: base >= 4.9 && < 5
39+
build-depends: base >= 4.9 && < 5
4040

41-
, containers >= 0.4 && < 0.7
42-
, mtl >= 2.0 && < 2.4
43-
, parsec >= 2.0 && < 3.2
44-
, copilot-language >= 3.19.1 && < 3.20
41+
, containers >= 0.4 && < 0.7
42+
, mtl >= 2.0 && < 2.4
43+
, parsec >= 2.0 && < 3.2
44+
, copilot-language >= 3.20 && < 3.21
4545

4646
exposed-modules:
4747
Copilot.Library.Libraries

copilot-prettyprinter/copilot-prettyprinter.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: copilot-prettyprinter
3-
version: 3.19.1
3+
version: 3.20
44
synopsis: A prettyprinter of Copilot Specifications.
55
description:
66
A prettyprinter of Copilot specifications.
@@ -45,7 +45,7 @@ library
4545
base >= 4.9 && < 5,
4646
pretty >= 1.0 && < 1.2,
4747

48-
copilot-core >= 3.19.1 && < 3.20
48+
copilot-core >= 3.20 && < 3.21
4949

5050
exposed-modules:
5151

copilot-theorem/copilot-theorem.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description:
1414
<https://copilot-language.github.io>.
1515

1616

17-
version : 3.19.1
17+
version : 3.20
1818
license : BSD3
1919
license-file : LICENSE
2020
maintainer : Ivan Perez <ivan.perezdominguez@nasa.gov>
@@ -63,8 +63,8 @@ library
6363
, xml >= 1.3 && < 1.4
6464
, what4 >= 1.3 && < 1.7
6565

66-
, copilot-core >= 3.19.1 && < 3.20
67-
, copilot-prettyprinter >= 3.19.1 && < 3.20
66+
, copilot-core >= 3.20 && < 3.21
67+
, copilot-prettyprinter >= 3.20 && < 3.21
6868

6969
exposed-modules : Copilot.Theorem
7070
, Copilot.Theorem.Prove

copilot/copilot.cabal

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: copilot
2-
version: 3.19.1
2+
version: 3.20
33
cabal-version: >= 1.10
44
license: BSD3
55
license-file: LICENSE
@@ -47,17 +47,17 @@ library
4747
-Wall
4848
-fno-warn-orphans
4949
build-depends:
50-
base >= 4.9 && < 5
51-
, optparse-applicative >= 0.14 && < 0.19
52-
, directory >= 1.3 && < 1.4
53-
, filepath >= 1.4 && < 1.5
54-
55-
, copilot-core >= 3.19.1 && < 3.20
56-
, copilot-theorem >= 3.19.1 && < 3.20
57-
, copilot-language >= 3.19.1 && < 3.20
58-
, copilot-libraries >= 3.19.1 && < 3.20
59-
, copilot-c99 >= 3.19.1 && < 3.20
60-
, copilot-prettyprinter >= 3.19.1 && < 3.20
50+
base >= 4.9 && < 5
51+
, optparse-applicative >= 0.14 && < 0.19
52+
, directory >= 1.3 && < 1.4
53+
, filepath >= 1.4 && < 1.5
54+
55+
, copilot-core >= 3.20 && < 3.21
56+
, copilot-theorem >= 3.20 && < 3.21
57+
, copilot-language >= 3.20 && < 3.21
58+
, copilot-libraries >= 3.20 && < 3.21
59+
, copilot-c99 >= 3.20 && < 3.21
60+
, copilot-prettyprinter >= 3.20 && < 3.21
6161

6262

6363
exposed-modules: Language.Copilot, Language.Copilot.Main

0 commit comments

Comments
 (0)