diff --git a/CHANGELOG.md b/CHANGELOG.md index 832c0cc41958..3242b9da2502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.2] - 2022-10-13 + +### Added + +- feat(experiment): Allow user to config http connection pool (#843) +- feat: Add concurrent limit layer (#848) +- feat: Allow kv services implemented without list support (#850) +- feat: Implement service for moka (#852) +- docs: Add docs for moka service and concurrent limit layer (#857) + ## [v0.19.1] - 2022-10-11 ### Added @@ -861,6 +871,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.19.2]: https://github.com/datafuselabs/opendal/compare/v0.19.1...v0.19.2 [v0.19.1]: https://github.com/datafuselabs/opendal/compare/v0.19.0...v0.19.1 [v0.19.0]: https://github.com/datafuselabs/opendal/compare/v0.18.2...v0.19.0 [v0.18.2]: https://github.com/datafuselabs/opendal/compare/v0.18.1...v0.18.2 diff --git a/Cargo.toml b/Cargo.toml index 59b26f52c7f3..9d6e144ce7e0 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.1" +version = "0.19.2" [package.metadata.docs.rs] all-features = true diff --git a/oay/Cargo.lock b/oay/Cargo.lock index 812807e931ce..3f33f59b4aa6 100644 --- a/oay/Cargo.lock +++ b/oay/Cargo.lock @@ -1061,7 +1061,7 @@ dependencies = [ [[package]] name = "oay" -version = "0.19.1" +version = "0.19.2" dependencies = [ "actix-web", "anyhow", @@ -1083,7 +1083,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "opendal" -version = "0.19.1" +version = "0.19.2" dependencies = [ "anyhow", "async-compat", diff --git a/oay/Cargo.toml b/oay/Cargo.toml index 4406daf6d72e..a476f3c9746b 100644 --- a/oay/Cargo.toml +++ b/oay/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] license = "Apache-2.0" name = "oay" repository = "https://github.com/datafuselabs/opendal" -version = "0.19.1" +version = "0.19.2" [dependencies] actix-web = "4" diff --git a/oli/Cargo.lock b/oli/Cargo.lock index 24e93c3f7607..0dd90259d12d 100644 --- a/oli/Cargo.lock +++ b/oli/Cargo.lock @@ -806,7 +806,7 @@ dependencies = [ [[package]] name = "oli" -version = "0.19.1" +version = "0.19.2" dependencies = [ "anyhow", "assert_cmd", @@ -826,7 +826,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "opendal" -version = "0.19.1" +version = "0.19.2" dependencies = [ "anyhow", "async-compat", diff --git a/oli/Cargo.toml b/oli/Cargo.toml index 98a7160e0808..61b80cf0a1da 100644 --- a/oli/Cargo.toml +++ b/oli/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] license = "Apache-2.0" name = "oli" repository = "https://github.com/datafuselabs/opendal" -version = "0.19.1" +version = "0.19.2" [dependencies] anyhow = "1"