This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 24fbbf88 Bump to version 0.31.1 (#2011)
24fbbf88 is described below
commit 24fbbf88532e895fe719766fb84c02260a29edc0
Author: Xuanwo <[email protected]>
AuthorDate: Mon Apr 17 00:23:48 2023 +0800
Bump to version 0.31.1 (#2011)
* Bump to version 0.31.1
Signed-off-by: Xuanwo <[email protected]>
* Fix typo
Signed-off-by: Xuanwo <[email protected]>
---------
Signed-off-by: Xuanwo <[email protected]>
---
CHANGELOG.md | 48 +++++++++++++++++++++++++
Cargo.lock | 10 +++---
Cargo.toml | 2 +-
bindings/nodejs/npm/darwin-arm64/package.json | 2 +-
bindings/nodejs/npm/darwin-x64/package.json | 2 +-
bindings/nodejs/npm/linux-x64-gnu/package.json | 2 +-
bindings/nodejs/npm/win32-x64-msvc/package.json | 2 +-
bindings/nodejs/package.json | 2 +-
8 files changed, 59 insertions(+), 11 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bde5f902..6471a2cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,53 @@ 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.31.1] - 2023-04-17
+
+### Added
+
+- feat(services/azdfs): support rename (#1929)
+- test: Increate copy/move nested path test depth (#1932)
+- feat(layers): add a basic minitrace layer (#1931)
+- feat: add Writer::abort method (#1937)
+- feat(services/gcs): Allow setting PredefinedAcl (#1989)
+- feat(services/oss): add oss cache-control header support (#1986)
+- feat: Add PreconditionFailed Error so users can handle them (#1993)
+- feat: add http if_none_match support (#1995)
+- feat: add oss if-none-match support (#1997)
+- feat(services/gcs): Allow setting default storage_class (#1996)
+- feat(binding/C): add clang-format for c binding (#2003)
+
+### Changed
+
+- refactor: Polish the behavior of scan (#1926)
+- refactor: Polish the implementation of webhdfs (#1935)
+
+### Fixed
+
+- fix: sled should not be enabled by default (#1923)
+- fix: kv adapter's writer implementation fixed to honour empty writes (#193
+4)
+- fix(services/azblob): fix copy missing content-length (#2000)
+
+### Docs
+
+- docs: Adding docs link to python binding (#1921)
+- docs(bindings/python): fix wrong doc link (#1928)
+- docs: Add contributing for OpenDAL (#1984)
+- docs: Add explanation in contributing (#1985)
+- docs: Feel relax in community and don't hurry (#1987)
+- docs: update contributing (#1998)
+- docs(services/memory): Fix wrong explanation (#2002)
+- docs: Add OpenDAL VISION (#2007)
+- docs: update VISION and behavior tests doc (#2009)
+
+### CI
+
+- ci(bindings/nodejs): Access should be set to public before publish (#1919)
+- ci: Re-enable webhdfs test (#1925)
+- chore: add .editorconfig (#1988)
+- ci: Fix format after adding editorconfig (#1990)
+
## [v0.31.0] - 2023-04-12
### Added
@@ -1840,6 +1887,7 @@ and this project adheres to [Semantic
Versioning](https://semver.org/).
Hello, OpenDAL!
+[v0.31.1]:
https://github.com/apache/incubator-opendal/compare/v0.31.0...v0.31.1
[v0.31.0]:
https://github.com/apache/incubator-opendal/compare/v0.30.5...v0.31.0
[v0.30.5]:
https://github.com/apache/incubator-opendal/compare/v0.30.4...v0.30.5
[v0.30.4]:
https://github.com/apache/incubator-opendal/compare/v0.30.3...v0.30.4
diff --git a/Cargo.lock b/Cargo.lock
index 8c1f303e..f66fcde7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2187,7 +2187,7 @@ dependencies = [
[[package]]
name = "object_store_opendal"
-version = "0.31.0"
+version = "0.31.1"
dependencies = [
"async-trait",
"bytes",
@@ -2199,7 +2199,7 @@ dependencies = [
[[package]]
name = "oli"
-version = "0.31.0"
+version = "0.31.1"
dependencies = [
"anyhow",
"assert_cmd",
@@ -2230,7 +2230,7 @@ checksum =
"0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
[[package]]
name = "opendal"
-version = "0.31.0"
+version = "0.31.1"
dependencies = [
"anyhow",
"async-compat",
@@ -2306,7 +2306,7 @@ dependencies = [
[[package]]
name = "opendal-nodejs"
-version = "0.31.0"
+version = "0.31.1"
dependencies = [
"futures",
"napi",
@@ -2317,7 +2317,7 @@ dependencies = [
[[package]]
name = "opendal-python"
-version = "0.31.0"
+version = "0.31.1"
dependencies = [
"chrono",
"futures",
diff --git a/Cargo.toml b/Cargo.toml
index 098f4f29..ca2c46f7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -39,7 +39,7 @@ homepage = "https://opendal.apache.org/"
license = "Apache-2.0"
repository = "https://github.com/apache/incubator-opendal"
rust-version = "1.64"
-version = "0.31.0"
+version = "0.31.1"
[workspace.dependencies]
opendal = { version = "0.31", path = "core" }
diff --git a/bindings/nodejs/npm/darwin-arm64/package.json
b/bindings/nodejs/npm/darwin-arm64/package.json
index c4c935fa..f8565fb0 100644
--- a/bindings/nodejs/npm/darwin-arm64/package.json
+++ b/bindings/nodejs/npm/darwin-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@opendal/lib-darwin-arm64",
- "version": "0.31.0",
+ "version": "0.31.1",
"os": [
"darwin"
],
diff --git a/bindings/nodejs/npm/darwin-x64/package.json
b/bindings/nodejs/npm/darwin-x64/package.json
index 2d32e3d3..4b3b8597 100644
--- a/bindings/nodejs/npm/darwin-x64/package.json
+++ b/bindings/nodejs/npm/darwin-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@opendal/lib-darwin-x64",
- "version": "0.31.0",
+ "version": "0.31.1",
"os": [
"darwin"
],
diff --git a/bindings/nodejs/npm/linux-x64-gnu/package.json
b/bindings/nodejs/npm/linux-x64-gnu/package.json
index 7e47b7b0..b12b4521 100644
--- a/bindings/nodejs/npm/linux-x64-gnu/package.json
+++ b/bindings/nodejs/npm/linux-x64-gnu/package.json
@@ -1,6 +1,6 @@
{
"name": "@opendal/lib-linux-x64-gnu",
- "version": "0.31.0",
+ "version": "0.31.1",
"os": [
"linux"
],
diff --git a/bindings/nodejs/npm/win32-x64-msvc/package.json
b/bindings/nodejs/npm/win32-x64-msvc/package.json
index 12a830b8..751a51ad 100644
--- a/bindings/nodejs/npm/win32-x64-msvc/package.json
+++ b/bindings/nodejs/npm/win32-x64-msvc/package.json
@@ -1,6 +1,6 @@
{
"name": "@opendal/lib-win32-x64-msvc",
- "version": "0.31.0",
+ "version": "0.31.1",
"os": [
"win32"
],
diff --git a/bindings/nodejs/package.json b/bindings/nodejs/package.json
index ac378af2..23cc8075 100644
--- a/bindings/nodejs/package.json
+++ b/bindings/nodejs/package.json
@@ -1,7 +1,7 @@
{
"name": "opendal",
"author": "OpenDAL Contributors <[email protected]>",
- "version": "0.31.0",
+ "version": "0.31.1",
"license": "Apache-2.0",
"main": "index.js",
"types": "index.d.ts",