File tree Expand file tree Collapse file tree 8 files changed +23
-23
lines changed Expand file tree Collapse file tree 8 files changed +23
-23
lines changed Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : copilot-c99
3
- version : 4.2
3
+ version : 4.3
4
4
synopsis : A compiler for Copilot targeting C99.
5
5
description :
6
6
This package is a back-end from Copilot to C.
@@ -45,7 +45,7 @@ library
45
45
, mtl >= 2.2 && < 2.4
46
46
, pretty >= 1.1 && < 1.2
47
47
48
- , copilot-core >= 4.2 && < 4.3
48
+ , copilot-core >= 4.3 && < 4.4
49
49
, language-c99 >= 0.2.0 && < 0.3
50
50
, language-c99-simple >= 0.3 && < 0.4
51
51
Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : copilot-core
3
- version : 4.2
3
+ version : 4.3
4
4
synopsis : An intermediate representation for Copilot.
5
5
description :
6
6
Intermediate representation for Copilot.
Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : copilot-interpreter
3
- version : 4.2
3
+ version : 4.3
4
4
synopsis : Interpreter for Copilot.
5
5
description :
6
6
Interpreter for Copilot.
@@ -44,7 +44,7 @@ library
44
44
base >= 4.9 && < 5 ,
45
45
pretty >= 1.0 && < 1.2 ,
46
46
47
- copilot-core >= 4.2 && < 4.3
47
+ copilot-core >= 4.3 && < 4.4
48
48
49
49
exposed-modules :
50
50
Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : copilot-language
3
- version : 4.2
3
+ version : 4.3
4
4
synopsis : A Haskell-embedded DSL for monitoring hard real-time
5
5
distributed systems.
6
6
description :
@@ -42,9 +42,9 @@ library
42
42
, data-reify >= 0.6 && < 0.7
43
43
, mtl >= 2.0 && < 3
44
44
45
- , copilot-core >= 4.2 && < 4.3
46
- , copilot-interpreter >= 4.2 && < 4.3
47
- , copilot-theorem >= 4.2 && < 4.3
45
+ , copilot-core >= 4.3 && < 4.4
46
+ , copilot-interpreter >= 4.3 && < 4.4
47
+ , copilot-theorem >= 4.3 && < 4.4
48
48
49
49
exposed-modules : Copilot.Language
50
50
, Copilot.Language.Operators.BitWise
Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : copilot-libraries
3
- version : 4.2
3
+ version : 4.3
4
4
synopsis : Libraries for the Copilot language.
5
5
description :
6
6
Libraries for the Copilot language.
@@ -41,7 +41,7 @@ library
41
41
, containers >= 0.4 && < 0.8
42
42
, mtl >= 2.0 && < 2.4
43
43
, parsec >= 2.0 && < 3.2
44
- , copilot-language >= 4.2 && < 4.3
44
+ , copilot-language >= 4.3 && < 4.4
45
45
46
46
exposed-modules :
47
47
Copilot.Library.Libraries
Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : copilot-prettyprinter
3
- version : 4.2
3
+ version : 4.3
4
4
synopsis : A prettyprinter of Copilot Specifications.
5
5
description :
6
6
A prettyprinter of Copilot specifications.
@@ -45,7 +45,7 @@ library
45
45
base >= 4.9 && < 5 ,
46
46
pretty >= 1.0 && < 1.2 ,
47
47
48
- copilot-core >= 4.2 && < 4.3
48
+ copilot-core >= 4.3 && < 4.4
49
49
50
50
exposed-modules :
51
51
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ description:
14
14
<https://copilot-language.github.io> .
15
15
16
16
17
- version : 4.2
17
+ version : 4.3
18
18
license : BSD3
19
19
license-file : LICENSE
20
20
maintainer : Ivan Perez <ivan.perezdominguez@nasa.gov>
@@ -63,8 +63,8 @@ library
63
63
, xml >= 1.3 && < 1.4
64
64
, what4 >= 1.3 && < 1.7
65
65
66
- , copilot-core >= 4.2 && < 4.3
67
- , copilot-prettyprinter >= 4.2 && < 4.3
66
+ , copilot-core >= 4.3 && < 4.4
67
+ , copilot-prettyprinter >= 4.3 && < 4.4
68
68
69
69
exposed-modules : Copilot.Theorem
70
70
, Copilot.Theorem.Prove
Original file line number Diff line number Diff line change 1
1
name : copilot
2
- version : 4.2
2
+ version : 4.3
3
3
cabal-version : >= 1.10
4
4
license : BSD3
5
5
license-file : LICENSE
@@ -52,12 +52,12 @@ library
52
52
, directory >= 1.3 && < 1.4
53
53
, filepath >= 1.4 && < 1.6
54
54
55
- , copilot-core >= 4.2 && < 4.3
56
- , copilot-theorem >= 4.2 && < 4.3
57
- , copilot-language >= 4.2 && < 4.3
58
- , copilot-libraries >= 4.2 && < 4.3
59
- , copilot-c99 >= 4.2 && < 4.3
60
- , copilot-prettyprinter >= 4.2 && < 4.3
55
+ , copilot-core >= 4.3 && < 4.4
56
+ , copilot-theorem >= 4.3 && < 4.4
57
+ , copilot-language >= 4.3 && < 4.4
58
+ , copilot-libraries >= 4.3 && < 4.4
59
+ , copilot-c99 >= 4.3 && < 4.4
60
+ , copilot-prettyprinter >= 4.3 && < 4.4
61
61
62
62
63
63
exposed-modules : Language.Copilot, Language.Copilot.Main
You can’t perform that action at this time.
0 commit comments