Bump to version 0.7.3 (#331)
Signed-off-by: Xuanwo <github@xuanwo.io>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9e9e23e..c40e618 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/)
and this project adheres to [Semantic Versioning](https://semver.org/).
+## [v0.7.3] - 2022-06-03
+
+### Fixed
+
+- fix(services/s3,hdfs): List empty dir should not return itself (#327)
+- fix(services/hdfs): Root path not cleaned correctly (#330)
+
## [v0.7.2] - 2022-06-01
### Added
@@ -378,6 +385,7 @@
Hello, OpenDAL!
+[v0.7.3]: https://github.com/datafuselabs/opendal/compare/v0.7.2...v0.7.3
[v0.7.2]: https://github.com/datafuselabs/opendal/compare/v0.7.1...v0.7.2
[v0.7.1]: https://github.com/datafuselabs/opendal/compare/v0.7.0...v0.7.1
[v0.7.0]: https://github.com/datafuselabs/opendal/compare/v0.6.3...v0.7.0
diff --git a/Cargo.toml b/Cargo.toml
index d2f7d4c..ba0d11c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,7 +8,7 @@
license = "Apache-2.0"
name = "opendal"
repository = "https://github.com/datafuselabs/opendal"
-version = "0.7.2"
+version = "0.7.3"
[package.metadata.docs.rs]
all-features = true
@@ -35,8 +35,8 @@
async-compat = "0.2.1"
# Temp workaround, should come back to tagged version after https://github.com/Nemo157/async-compression/issues/150 resolved.
async-compression = { package = "async-compression-issue-150-workaround", version = "0.3.15-issue-150", features = [
- "futures-io",
- "all-algorithms",
+ "futures-io",
+ "all-algorithms",
], optional = true }
async-trait = "0.1.53"
backon = { version = "0.0.2", optional = true }
@@ -67,9 +67,9 @@
anyhow = "1.0.56"
cfg-if = "1.0.0"
criterion = { version = "0.3.5", features = [
- "async",
- "async_tokio",
- "html_reports",
+ "async",
+ "async_tokio",
+ "html_reports",
] }
dotenv = "0.15.0"
env_logger = "0.9.0"