diff --git a/bindings/haskell/Cargo.toml b/bindings/haskell/Cargo.toml index de1fe0477069..493f8dccafd8 100644 --- a/bindings/haskell/Cargo.toml +++ b/bindings/haskell/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.44.2+core.0.44.2" +version = "0.44.2+core.0.45.0" [lib] crate-type = ["cdylib"] @@ -34,4 +34,4 @@ doc = false [dependencies] chrono = "0.4" log = { version = "0.4", features = ["std"] } -opendal = { version = "0.44.2" } +opendal = { version = "0.45.0", path = "../../core" } diff --git a/bindings/haskell/Setup.hs b/bindings/haskell/Setup.hs index 1949196ae6b8..a894b2966398 100644 --- a/bindings/haskell/Setup.hs +++ b/bindings/haskell/Setup.hs @@ -81,4 +81,4 @@ getDynamicLibExtension lbi = OSX -> "dylib" Linux -> "so" Windows -> "dll" - _ -> error "Unsupported OS" \ No newline at end of file + _ -> error "Unsupported OS" diff --git a/bindings/ocaml/Cargo.toml b/bindings/ocaml/Cargo.toml index f3505d2e41c0..104d77eb4de7 100644 --- a/bindings/ocaml/Cargo.toml +++ b/bindings/ocaml/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-ocaml" publish = false -version = "0.0.0+core.0.44.2" +version = "0.0.0+core.0.45.0" authors = ["Apache OpenDAL "] edition = "2021" @@ -33,7 +33,7 @@ doc = false [dependencies] ocaml = { version = "^1.0.0-beta" } -opendal = { version = "0.44.2" } +opendal = { version = "0.45.0", path = "../../core" } [build-dependencies] ocaml-build = { version = "^1.0.0-beta" } diff --git a/bindings/ruby/Cargo.toml b/bindings/ruby/Cargo.toml index 5572f3f86717..36484a98d71e 100644 --- a/bindings/ruby/Cargo.toml +++ b/bindings/ruby/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-ruby" publish = false -version = "0.1.0+core.0.43.0" +version = "0.1.0+core.0.45.0" authors = ["Apache OpenDAL "] edition = "2021" @@ -34,7 +34,7 @@ name = "opendal_ruby" [dependencies] magnus = { version = "0.5", features = ["bytes-crate"] } -opendal = "0.43.0" +opendal = { version = "0.45.0", path = "../../core" } rb-sys = { version = "0.9.77", default-features = false } [build-dependencies]