Bump to version 0.5.0 (#232)
Signed-off-by: Xuanwo <github@xuanwo.io>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8cd5fe3..f0f7dbc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,26 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/)
and this project adheres to [Semantic Versioning](https://semver.org/).
+## [v0.5.0] - 2022-04-07
+
+### Added
+
+- feat: Improve error message (#220)
+- RFC-0221: Create Dir (#221)
+- feat: Simplify create API (#225)
+- feat: Implement decompress read support (#227)
+- ci: Enable behavior test for azblob (#229)
+- docs: Add docs for azblob's public structs (#230)
+
+### Changed
+
+- refactor: Move op.objects() to o.list() (#224)
+- refactor: Improve behavior_tests so that cargo test works without --all-features (#231)
+
+### Fixed
+
+- fix: Azblob should pass all behavior tests now (#228)
+
## [v0.4.2] - 2022-04-03
### Added
@@ -242,6 +262,7 @@
Hello, OpenDAL!
+[v0.5.0]: https://github.com/datafuselabs/opendal/compare/v0.4.2...v0.5.0
[v0.4.2]: https://github.com/datafuselabs/opendal/compare/v0.4.1...v0.4.2
[v0.4.1]: https://github.com/datafuselabs/opendal/compare/v0.4.0...v0.4.1
[v0.4.0]: https://github.com/datafuselabs/opendal/compare/v0.3.0...v0.4.0
diff --git a/Cargo.toml b/Cargo.toml
index 4044790..836b148 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,11 +3,11 @@
categories = ["filesystem"]
description = "Open Data Access Layer that connect the whole world together."
edition = "2021"
-keywords = ["storage", "data", "s3", "fs"]
+keywords = ["storage", "data", "s3", "fs", "azblob"]
license = "Apache-2.0"
name = "opendal"
repository = "https://github.com/datafuselabs/opendal"
-version = "0.4.2"
+version = "0.5.0"
[features]
compress = ["async-compression"]
diff --git a/src/lib.rs b/src/lib.rs
index dd16182..fcbb095 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -23,6 +23,10 @@
//! | [memory][crate::services::memory] | In memory backend support. |
//! | [s3][crate::services::s3] | AWS S3 alike services. |
//!
+//! # Optional features
+//!
+//! - `compress`: Enable object decompress read support.
+//!
//! # Example
//!
//! ```no_run