From 50c2608f5e481820038e5f8ad4596ef7cac6ac6e Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sat, 4 Feb 2023 18:05:17 +0800 Subject: [PATCH] Bump to version 0.26.0 (#1274) * Bump to version 0.26.0 Signed-off-by: Xuanwo * Update changelog Signed-off-by: Xuanwo --------- Signed-off-by: Xuanwo --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- binaries/oay/Cargo.lock | 2 +- binaries/oay/Cargo.toml | 2 +- binaries/oli/Cargo.lock | 2 +- binaries/oli/Cargo.toml | 2 +- bindings/nodejs/Cargo.toml | 2 +- bindings/object_store/Cargo.toml | 2 +- bindings/python/Cargo.toml | 2 +- 9 files changed, 25 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 696355e838b..d82fcaef071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). +## [v0.26.0] - 2023-02-04 + +## Added + +- feat: Add benchmarks for blocking_seek operations (#1258) +- feat: add dev container (#1261) +- feat: Zero Cost OpenDAL (#1260) +- feat: Allow dynamic dispatch layer (#1273) + +## Changed + +- refactor: remove the duplicated dependency in dev-dependencies (#1257) +- refactor: some code in GitHub Actions (#1269) +- refactor: Don't expose services mod directly (#1271) +- refactor: Polish Builder API (#1272) + ## [v0.25.2] - 2023-01-30 ### Added @@ -1258,6 +1274,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.26.0]: https://github.com/datafuselabs/opendal/compare/v0.25.2...v0.26.0 [v0.25.2]: https://github.com/datafuselabs/opendal/compare/v0.25.1...v0.25.2 [v0.25.1]: https://github.com/datafuselabs/opendal/compare/v0.25.0...v0.25.1 [v0.25.0]: https://github.com/datafuselabs/opendal/compare/v0.24.6...v0.25.0 diff --git a/Cargo.toml b/Cargo.toml index 750176da39a..a463398e292 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["storage", "fs", "s3", "azblob", "gcs"] license = "Apache-2.0" name = "opendal" repository = "https://github.com/datafuselabs/opendal" -version = "0.25.2" +version = "0.26.0" # MSRV of OpenDAL. Please update this field while bump. rust-version = "1.60" diff --git a/binaries/oay/Cargo.lock b/binaries/oay/Cargo.lock index f5c108e72f3..7d24bf6fcc0 100644 --- a/binaries/oay/Cargo.lock +++ b/binaries/oay/Cargo.lock @@ -1124,7 +1124,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" [[package]] name = "opendal" -version = "0.25.2" +version = "0.26.0" dependencies = [ "anyhow", "async-compat", diff --git a/binaries/oay/Cargo.toml b/binaries/oay/Cargo.toml index acc8aaf9a2c..d787fad2ace 100644 --- a/binaries/oay/Cargo.toml +++ b/binaries/oay/Cargo.toml @@ -17,7 +17,7 @@ clap = { version = "4", features = ["cargo"] } env_logger = "0.10" futures = "0.3" log = "0.4" -opendal = { version = "0.25", path = "../../" } +opendal = { version = "0.26", path = "../../" } percent-encoding = "2" sluice = "0.5" tokio = { version = "1.20", features = ["rt-multi-thread", "macros"] } diff --git a/binaries/oli/Cargo.lock b/binaries/oli/Cargo.lock index 5198abcd442..910cc4b8ea6 100644 --- a/binaries/oli/Cargo.lock +++ b/binaries/oli/Cargo.lock @@ -831,7 +831,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" [[package]] name = "opendal" -version = "0.25.2" +version = "0.26.0" dependencies = [ "anyhow", "async-compat", diff --git a/binaries/oli/Cargo.toml b/binaries/oli/Cargo.toml index d1741102e8d..f12284ed097 100644 --- a/binaries/oli/Cargo.toml +++ b/binaries/oli/Cargo.toml @@ -15,7 +15,7 @@ anyhow = "1" clap = { version = "4", features = ["cargo", "string"] } env_logger = "0.10" log = "0.4" -opendal = { version = "0.25", path = "../../" } +opendal = { version = "0.26", path = "../../" } tokio = { version = "1.20", features = ["fs", "macros", "rt-multi-thread"] } [dev-dependencies] diff --git a/bindings/nodejs/Cargo.toml b/bindings/nodejs/Cargo.toml index 23aa7926894..3e892610716 100644 --- a/bindings/nodejs/Cargo.toml +++ b/bindings/nodejs/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] napi = "2" napi-derive = "2" -opendal = { version = "0.25", path = "../../" } +opendal = { version = "0.26", path = "../../" } [build-dependencies] napi-build = "2" diff --git a/bindings/object_store/Cargo.toml b/bindings/object_store/Cargo.toml index 9b5edb1c943..460f431c9de 100644 --- a/bindings/object_store/Cargo.toml +++ b/bindings/object_store/Cargo.toml @@ -14,7 +14,7 @@ bytes = "1" chrono = "0.4.23" futures = "0.3" object_store = "0.5" -opendal = { version = "0.25", path = "../../" } +opendal = { version = "0.26", path = "../../" } tokio = "1" [dev-dependencies] diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index aae303079e2..1b18440e9c8 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -8,5 +8,5 @@ crate-type = ["cdylib"] name = "opendal" [dependencies] -opendal = { version = "0.25", path = "../../" } +opendal = { version = "0.26", path = "../../" } pyo3 = { version = "0.18", features = ["extension-module"] }