From f1f10e515c2b5429f740a0b5563837e9e930b46a Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Tue, 19 Jul 2022 15:38:36 +0800 Subject: [PATCH] Bump to version 0.11.1 (#452) * Bump to version 0.11.1 Signed-off-by: Xuanwo * Update binaries Signed-off-by: Xuanwo * Format toml Signed-off-by: Xuanwo * Update dependabot Signed-off-by: Xuanwo --- .github/dependabot.yml | 10 ++++++++-- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- oay/Cargo.lock | 4 ++-- oay/Cargo.toml | 6 +++--- oli/Cargo.lock | 6 ++---- oli/Cargo.toml | 8 ++++++-- 7 files changed, 34 insertions(+), 14 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ba90bf5c535..8b306503c45 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,8 +12,14 @@ updates: schedule: interval: "daily" - # Maintain dependencies for opendal_test + # Maintain dependencies for oay - package-ecosystem: "cargo" - directory: "/opendal_test" + directory: "/oay" + schedule: + interval: "daily" + + # Maintain dependencies for oli + - package-ecosystem: "cargo" + directory: "/oli" schedule: interval: "daily" diff --git a/CHANGELOG.md b/CHANGELOG.md index 8933e9dd434..b89af103a60 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.11.1] - 2022-07-19 + +### Added + +- RFC-0438: Multipart (#438) +- RFC-0443: Gateway (#443) +- feat: Add basic oay support for http (#445) +- feat: BytesRange supports parsing from range and content-range (#449) +- feat(oay): Implement range support (#450) +- feat(services-http): Implement write and delete for testing (#451) + ## [v0.11.0] - 2022-07-11 ### Added @@ -475,6 +486,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.11.1]: https://github.com/datafuselabs/opendal/compare/v0.11.0...v0.11.1 [v0.11.0]: https://github.com/datafuselabs/opendal/compare/v0.10.0...v0.11.0 [v0.10.0]: https://github.com/datafuselabs/opendal/compare/v0.9.1...v0.10.0 [v0.9.1]: https://github.com/datafuselabs/opendal/compare/v0.9.0...v0.9.1 diff --git a/Cargo.toml b/Cargo.toml index 5f21fd00968..8f9fa0ce578 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] license = "Apache-2.0" name = "opendal" repository = "https://github.com/datafuselabs/opendal" -version = "0.11.0" +version = "0.11.1" [package.metadata.docs.rs] all-features = true diff --git a/oay/Cargo.lock b/oay/Cargo.lock index 78b824266ac..0d0ad3dd584 100644 --- a/oay/Cargo.lock +++ b/oay/Cargo.lock @@ -1336,7 +1336,7 @@ dependencies = [ [[package]] name = "oay" -version = "0.0.0" +version = "0.11.1" dependencies = [ "actix-web", "anyhow", @@ -1356,7 +1356,7 @@ checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" [[package]] name = "opendal" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "async-compat", diff --git a/oay/Cargo.toml b/oay/Cargo.toml index 7e77b4e338c..681248706ca 100644 --- a/oay/Cargo.toml +++ b/oay/Cargo.toml @@ -8,17 +8,17 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] license = "Apache-2.0" name = "oay" repository = "https://github.com/datafuselabs/opendal" -version = "0.0.0" +version = "0.11.1" [dependencies] actix-web = "4.1.0" anyhow = "1.0.58" clap = { version = "3.2.8", features = ["cargo"] } env_logger = "0.9.0" +futures = "0.3.21" log = "0.4.17" -opendal = "0.11.0" +opendal = "0.11.1" tokio = "1.20.0" -futures = "0.3.21" # Please comment the following patch while releasing. [patch.crates-io] diff --git a/oli/Cargo.lock b/oli/Cargo.lock index 335913798c4..483e600b814 100644 --- a/oli/Cargo.lock +++ b/oli/Cargo.lock @@ -1006,7 +1006,7 @@ dependencies = [ [[package]] name = "oli" -version = "0.10.0" +version = "0.11.1" dependencies = [ "anyhow", "clap", @@ -1023,9 +1023,7 @@ checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" [[package]] name = "opendal" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6ce886835b8a98dd969901d278509c96e0800a2c550d5df445738f58426ea87" +version = "0.11.1" dependencies = [ "anyhow", "async-compat", diff --git a/oli/Cargo.toml b/oli/Cargo.toml index 5d63553041a..d823bdd734b 100644 --- a/oli/Cargo.toml +++ b/oli/Cargo.toml @@ -8,11 +8,15 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] license = "Apache-2.0" name = "oli" repository = "https://github.com/datafuselabs/opendal" -version = "0.10.0" +version = "0.11.1" [dependencies] anyhow = "1.0.58" clap = { version = "3.2.8", features = ["cargo"] } env_logger = "0.9.0" log = "0.4.17" -opendal = "0.10.0" +opendal = "0.11.1" + +# Please comment the following patch while releasing. +[patch.crates-io] +opendal = { path = "../" }