Skip to content

Commit

Permalink
chore: require OCaml >= 4.08 now
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Nov 29, 2023
1 parent bbe7094 commit c9300d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(depends
(odoc :with-doc)
(pbrt (= :version))
(ocaml (>= 4.03)))
(ocaml (>= 4.08)))
(tags (protoc protobuf codegen)))

(package
Expand All @@ -23,14 +23,14 @@
(depends
stdlib-shims
(odoc :with-doc)
(ocaml (>= 4.03)))
(ocaml (>= 4.08)))
(tags (protobuf encode decode)))

(package
(name pbrt_yojson)
(synopsis "Runtime library for ocaml-protoc to support JSON encoding/decoding")
(depends
(ocaml (>= 4.03))
(ocaml (>= 4.08))
(odoc :with-doc)
(yojson (>= 1.6))
base64)
Expand All @@ -40,7 +40,7 @@
(name pbrt_services)
(synopsis "Runtime library for ocaml-protoc to support RPC services")
(depends
(ocaml (>= 4.03))
(ocaml (>= 4.08))
(pbrt (= :version))
(pbrt_yojson (= :version)))
(tags (protobuf encode decode services rpc)))
Expand Down
2 changes: 1 addition & 1 deletion ocaml-protoc.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ depends: [
"dune" {>= "2.0"}
"odoc" {with-doc}
"pbrt" {= version}
"ocaml" {>= "4.03"}
"ocaml" {>= "4.08"}
]
build: [
["dune" "subst"] {pinned}
Expand Down
2 changes: 1 addition & 1 deletion pbrt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ depends: [
"dune" {>= "2.0"}
"stdlib-shims"
"odoc" {with-doc}
"ocaml" {>= "4.03"}
"ocaml" {>= "4.08"}
]
build: [
["dune" "subst"] {pinned}
Expand Down
2 changes: 1 addition & 1 deletion pbrt_services.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage: "https://github.com/mransan/ocaml-protoc"
bug-reports: "https://github.com/mransan/ocaml-protoc/issues"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.03"}
"ocaml" {>= "4.08"}
"pbrt" {= version}
"pbrt_yojson" {= version}
]
Expand Down
2 changes: 1 addition & 1 deletion pbrt_yojson.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ homepage: "https://github.com/mransan/ocaml-protoc"
bug-reports: "https://github.com/mransan/ocaml-protoc/issues"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.03"}
"ocaml" {>= "4.08"}
"odoc" {with-doc}
"yojson" {>= "1.6"}
"base64"
Expand Down

0 comments on commit c9300d7

Please sign in to comment.