Skip to content

Commit

Permalink
Bump to version 0.3.0 (#186)
Browse files Browse the repository at this point in the history
* Bump to version 0.3.0

Signed-off-by: Xuanwo <github@xuanwo.io>

* Update docs

Signed-off-by: Xuanwo <github@xuanwo.io>
  • Loading branch information
Xuanwo authored Mar 25, 2022
1 parent 113935c commit 16931dd
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ 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.3.0] - 2022-03-25

### Added

- feat: Add azure blob support (#165)
- feat: Add tracing support via minitrace (#175)
- feat(service/s3): Implement server side encryption support (#182)

### Changed

- chore: Level down some log entry to debug (#181)

### Fixed

- fix(service/s3): Endpoint template should be applied if region exists (#180)

## [v0.2.5] - 2022-03-22

### Added
Expand Down Expand Up @@ -181,6 +197,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

Hello, OpenDAL!

[v0.3.0]: https://github.com/datafuselabs/opendal/compare/v0.2.5...v0.3.0
[v0.2.5]: https://github.com/datafuselabs/opendal/compare/v0.2.4...v0.2.5
[v0.2.4]: https://github.com/datafuselabs/opendal/compare/v0.2.3...v0.2.4
[v0.2.3]: https://github.com/datafuselabs/opendal/compare/v0.2.2...v0.2.3
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["storage", "data", "s3", "fs"]
license = "Apache-2.0"
name = "opendal"
repository = "https://github.com/datafuselabs/opendal"
version = "0.2.5"
version = "0.3.0"

[workspace]
members = ["opendal_test"]
Expand All @@ -23,13 +23,15 @@ name = "ops"
anyhow = "1"
async-compat = "0.2"
async-trait = "0.1"
base64 = "0.13.0"
bstr = "0.2"
bytes = "1"
futures = { version = "0.3", features = ["alloc"] }
http = "0.2"
hyper = { version = "0.14", features = ["full"] }
hyper-tls = "0.5.0"
log = "0.4"
md5 = "0.7.0"
metrics = "0.18"
minitrace = "0.4.0"
once_cell = "1"
Expand All @@ -43,8 +45,6 @@ thiserror = "1"
time = "0.3.7"
tokio = { version = "1.17", features = ["full"] }
tower = "0.4"
base64="0.13.0"
md5 = "0.7.0"

[dev-dependencies]
anyhow = "1.0"
Expand Down
6 changes: 6 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@
//! Ok(())
//! }
//! ```
//!
//! ## Supported Services
//!
//! - [fs][crate::services::fs]: POSIX alike file system.
//! - [memory][crate::services::memory]: In memory backend support.
//! - [s3][crate::services::s3]: AWS services like S3.
extern crate core;

mod accessor;
Expand Down
2 changes: 2 additions & 0 deletions src/scheme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ pub enum Scheme {
// TODO: Although we don't have azblob support for now, but we need to add it for compatibility. We will implement azblob support as soon as possible.
Azblob,
Fs,
Memory,
S3,
}

Expand All @@ -35,6 +36,7 @@ impl FromStr for Scheme {
match s.as_str() {
"azblob" => Ok(Scheme::Azblob),
"fs" => Ok(Scheme::Fs),
"memory" => Ok(Scheme::Memory),
"s3" => Ok(Scheme::S3),

// TODO: it's used for compatibility with dal1, should be removed in the future
Expand Down

0 comments on commit 16931dd

Please # to comment.