Skip to content

Commit

Permalink
Prepare for re-release of 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gbury committed Feb 10, 2023
1 parent 60143c9 commit 30acfc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@

next
----



v0.8.1
------

Expand Down
4 changes: 2 additions & 2 deletions tests/parsing/ae/pass/dune
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
(package dolmen_bin)
(action (chdir %{workspace_root}
(with-outputs-to %{target}
(with-accepted-exit-codes 0
(with-accepted-exit-codes (or 0 (not 0))
(run dolmen --mode=full --color=never %{input} %{read-lines:flags.dune}))))))
(rule
(alias runtest)
Expand All @@ -27,7 +27,7 @@
(package dolmen_bin)
(action (chdir %{workspace_root}
(with-outputs-to %{target}
(with-accepted-exit-codes 0
(with-accepted-exit-codes (or 0 (not 0))
(run dolmen --mode=full --color=never %{input} %{read-lines:flags.dune}))))))
(rule
(alias runtest)
Expand Down
2 changes: 1 addition & 1 deletion tests/typing/pass/ae/adts/dune
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
(package dolmen_bin)
(action (chdir %{workspace_root}
(with-outputs-to %{target}
(with-accepted-exit-codes 0
(with-accepted-exit-codes (or 0 (not 0))
(run dolmen --mode=full --color=never %{input} %{read-lines:flags.dune}))))))
(rule
(alias runtest)
Expand Down

0 comments on commit 30acfc9

Please sign in to comment.