Skip to content

Commit

Permalink
chore(bindings/ocaml): pinning OCaml binding opendal version for rele…
Browse files Browse the repository at this point in the history
…ase (#4086)
  • Loading branch information
Ranxy authored Jan 28, 2024
1 parent d81220e commit 519e6e1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions bindings/ocaml/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/ocaml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ doc = false

[dependencies]
ocaml = { version = "^1.0.0-beta" }
opendal = { path = "../../core" }
opendal = { version = "0.44.2" }

[build-dependencies]
ocaml-build = { version = "^1.0.0-beta" }
10 changes: 5 additions & 5 deletions bindings/ocaml/dune-project
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(lang dune 2.0)
(lang dune 2.1)
; Licensed to the Apache Software Foundation (ASF) under one
; or more contributor license agreements. See the NOTICE file
; distributed with this work for additional information
Expand All @@ -25,11 +25,11 @@
(documentation "https://opendal.apache.org/")
(package
(name opendal)
(synopsis "Open Data Access Layer: Access data freely")
(synopsis "Apache OpenDAL™ OCaml Binding")
(description
"OpenDAL is a data access layer that allows users to easily and efficiently retrieve data from various storage services in a unified way.")
"Apache OpenDAL is a data access layer that allows users to easily and efficiently retrieve data from various storage services in a unified way.")
(depends
(ounit2 (and (>= 2.2.6) :with-test))
(ocaml (>= "4.03.0"))
(dune (>= "1.5"))
(ocaml (and (>= "4.10.0") (< 5)))
(dune (>= "2.1"))
conf-rust))
8 changes: 4 additions & 4 deletions bindings/ocaml/opendal.opam
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Open Data Access Layer: Access data freely"
synopsis: "Apache OpenDAL™ OCaml Binding"
description:
"OpenDAL is a data access layer that allows users to easily and efficiently retrieve data from various storage services in a unified way."
"Apache OpenDAL is a data access layer that allows users to easily and efficiently retrieve data from various storage services in a unified way."
maintainer: ["OpenDAL Contributors <[email protected]>"]
authors: ["OpenDAL Contributors <[email protected]>"]
license: "Apache-2.0"
Expand All @@ -11,8 +11,8 @@ doc: "https://opendal.apache.org/"
bug-reports: "https://github.com/apache/opendal/issues"
depends: [
"ounit2" {>= "2.2.6" & with-test}
"ocaml" {>= "4.03.0"}
"dune" {>= "1.5"}
"ocaml" {>= "4.10.0" & < "5"}
"dune" {>= "2.1"}
"conf-rust"
]
build: [
Expand Down

0 comments on commit 519e6e1

Please sign in to comment.