Bump to version 0.26.0 (#1274)
* Bump to version 0.26.0
Signed-off-by: Xuanwo <github@xuanwo.io>
* Update changelog
Signed-off-by: Xuanwo <github@xuanwo.io>
---------
Signed-off-by: Xuanwo <github@xuanwo.io>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 696355e..d82fcae 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,22 @@
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 @@
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 750176d..a463398 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,7 +17,7 @@
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 f5c108e..7d24bf6 100644
--- a/binaries/oay/Cargo.lock
+++ b/binaries/oay/Cargo.lock
@@ -1124,7 +1124,7 @@
[[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 acc8aaf..d787fad 100644
--- a/binaries/oay/Cargo.toml
+++ b/binaries/oay/Cargo.toml
@@ -17,7 +17,7 @@
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 5198abc..910cc4b 100644
--- a/binaries/oli/Cargo.lock
+++ b/binaries/oli/Cargo.lock
@@ -831,7 +831,7 @@
[[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 d174110..f12284e 100644
--- a/binaries/oli/Cargo.toml
+++ b/binaries/oli/Cargo.toml
@@ -15,7 +15,7 @@
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 23aa792..3e89261 100644
--- a/bindings/nodejs/Cargo.toml
+++ b/bindings/nodejs/Cargo.toml
@@ -9,7 +9,7 @@
[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 9b5edb1..460f431 100644
--- a/bindings/object_store/Cargo.toml
+++ b/bindings/object_store/Cargo.toml
@@ -14,7 +14,7 @@
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 aae3030..1b18440 100644
--- a/bindings/python/Cargo.toml
+++ b/bindings/python/Cargo.toml
@@ -8,5 +8,5 @@
name = "opendal"
[dependencies]
-opendal = { version = "0.25", path = "../../" }
+opendal = { version = "0.26", path = "../../" }
pyo3 = { version = "0.18", features = ["extension-module"] }