Skip to content

Commit

Permalink
coq-of-solidity: upgrade to Coq 8.19
Browse files Browse the repository at this point in the history
  • Loading branch information
clarus committed Dec 11, 2024
1 parent 3dd39d3 commit a926bff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: git submodule update --init --recursive
- uses: coq-community/docker-coq-action@v1
with:
custom_image: coqorg/coq:8.18-ocaml-4.14-flambda
custom_image: coqorg/coq:8.19-ocaml-4.14-flambda
custom_script: |
startGroup "Install dependencies"
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion coq/CoqOfSolidity/RecordUpdate.v
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Ltac2 record_with_set_val (ty : constr) (record : constr)
let (h, args) :=
match Constr.Unsafe.kind ty with
| Constr.Unsafe.App h args => (h, args)
| _ => (ty, Array.empty ())
| _ => (ty, Array.empty)
end in
let ctor := constructor_of_record h in
let getters := List.map (fun getterRef =>
Expand Down
2 changes: 1 addition & 1 deletion coq/CoqOfSolidity/coq-of-solidity.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ homepage: "https://github.com/formal-land/solidity"
bug-reports: "https://github.com/formal-land/solidity/issues"
dev-repo: "git+https://github.com/formal-land/solidity.git"
depends: [
"coq" {>= "8.18.0" }
"coq" {>= "8.19.0" }
"coq-coqutil" {>= "0.0.5"}
"coq-hammer"
"ocaml" {>= "4.08"}
Expand Down

0 comments on commit a926bff

Please sign in to comment.