diff --git a/CHANGELOG.md b/CHANGELOG.md index 493703d27af4..f24397b2397b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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.19.7] - 2022-10-31 + +### Added + +- feat: Implement content type support for stat (#891) + +### Changed + +- refactor(layers/metrics): Holding all metrics handlers to avoid lock (#894) +- refactor(layers/metrics): Only update metrics while dropping readers (#896) + ## [v0.19.6] - 2022-10-25 ### Fixed @@ -910,7 +921,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! -[v0.19.6]: https://github.com/datafuselabs/opendal/compare/v0.19.4...v0.19.6 +[v0.19.7]: https://github.com/datafuselabs/opendal/compare/v0.19.6...v0.19.7 +[v0.19.6]: https://github.com/datafuselabs/opendal/compare/v0.19.5...v0.19.6 [v0.19.5]: https://github.com/datafuselabs/opendal/compare/v0.19.4...v0.19.5 [v0.19.4]: https://github.com/datafuselabs/opendal/compare/v0.19.3...v0.19.4 [v0.19.3]: https://github.com/datafuselabs/opendal/compare/v0.19.2...v0.19.3 diff --git a/Cargo.toml b/Cargo.toml index bbf0534e6886..5e31d7b17f73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["storage", "fs", "s3", "azblob", "gcs"] license = "Apache-2.0" name = "opendal" repository = "https://github.com/datafuselabs/opendal" -version = "0.19.6" +version = "0.19.7" [package.metadata.docs.rs] all-features = true diff --git a/oay/Cargo.lock b/oay/Cargo.lock index 1eeadf3b18af..7814595cd208 100644 --- a/oay/Cargo.lock +++ b/oay/Cargo.lock @@ -1086,7 +1086,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "opendal" -version = "0.19.6" +version = "0.19.7" dependencies = [ "anyhow", "async-compat", diff --git a/oli/Cargo.lock b/oli/Cargo.lock index 5e4278285fea..50407a2b56eb 100644 --- a/oli/Cargo.lock +++ b/oli/Cargo.lock @@ -829,7 +829,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "opendal" -version = "0.19.6" +version = "0.19.7" dependencies = [ "anyhow", "async-compat",