File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -72,15 +72,15 @@ jobs:
72
72
ocaml-compiler : ${{ matrix.ocaml-compiler }}
73
73
dune-cache : true
74
74
75
+ - name : Install coreutils on MacOS
76
+ if : runner.os == 'macOS'
77
+ run : brew install coreutils
78
+
75
79
- name : Install dependencies
76
80
run : opam install --locked --deps-only --with-test --with-doc ./beluga.opam
77
81
78
82
- name : Build
79
83
run : opam exec -- make
80
84
81
- - name : Install coreutils on MacOS
82
- if : runner.os == 'macOS'
83
- run : brew install coreutils
84
-
85
85
- name : Test
86
86
run : opam exec -- make test
Original file line number Diff line number Diff line change
1
+ ## v1.1.2
2
+
3
+ ### Added
4
+
5
+ - Added C. Sano, R. Kavanagh and B. Pientka's artifact for "Mechanizing Session-Types Using a Structural View" as a case study (#271 ).
6
+
7
+ ### Fixed
8
+
9
+ - Support postponed fixity pragmas in modules.
10
+ - The hole ` _ ` in the LF term ` \x._ ` is parsed as a wildcard instead of as an identifier.
11
+ - Shadowed bindings in a module are no longer brought into scope when the module is opened.
12
+ - Support postponed fixity pragmas in Harpoon sessions.
13
+
1
14
## v1.1.1
2
15
3
16
### Added
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ depends: [
24
24
"sedlex" {>= "2.5"}
25
25
"omd" {>= "1.3.2"}
26
26
"uri" {>= "4.2.0"}
27
+ "conf-timeout" {with-test}
27
28
"ocamlformat" {= "0.25.1" & with-test}
28
29
"yojson" {>= "2.0.2" & with-test}
29
30
"ounit2" {>= "2.2.6" & with-test}
Original file line number Diff line number Diff line change 44
44
( >= 1 .3.2) )
45
45
( uri
46
46
( >= 4 .2.0) )
47
+ ( conf-timeout :with -test)
47
48
( ocamlformat
48
49
( and
49
50
( = 0 .25.1)
You can’t perform that action at this time.
0 commit comments