diff --git a/CHANGELOG.md b/CHANGELOG.md index 0645eb3825df..11add5705b56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.1.4] - 2022-03-04 + +### Added + +- services/s3: Implement anonymous read support (#97) +- bench: Add parallel_read bench (#100) +- services/s3: Add test for anonymous support (#99) + ## [v0.1.3] - 2022-03-02 ### Added @@ -102,6 +110,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.1.4]: https://github.com/datafuselabs/opendal/compare/v0.1.3...v0.1.4 [v0.1.3]: https://github.com/datafuselabs/opendal/compare/v0.1.2...v0.1.3 [v0.1.2]: https://github.com/datafuselabs/opendal/compare/v0.1.1...v0.1.2 [v0.1.1]: https://github.com/datafuselabs/opendal/compare/v0.1.0...v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index 15d4e7d225a2..ca309d37944c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["storage", "data", "s3"] license = "Apache-2.0" name = "opendal" repository = "https://github.com/datafuselabs/opendal" -version = "0.1.3" +version = "0.1.4" [workspace] members = ["opendal_test"]