diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e9e23e68d5..c40e6185d8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.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 @@ and this project adheres to [Semantic Versioning](https://semver.org/). 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 d2f7d4ccf1a..ba0d11cc7e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] 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 @@ anyhow = "1.0.56" 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 @@ uuid = { version = "1.0.0", optional = true, features = ["serde", "v4"] } 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"