Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(bindings/ocaml): pinning OCaml binding opendal version for release #4086

Merged
merged 1 commit into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <dev@opendal.apache.org>"]
authors: ["OpenDAL Contributors <dev@opendal.apache.org>"]
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
Loading