Skip to content

Commit 24fbbf8

Browse files
authored
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]>
1 parent 05fde0a commit 24fbbf8

File tree

8 files changed

+59
-11
lines changed

8 files changed

+59
-11
lines changed

CHANGELOG.md

+48
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,53 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [v0.31.1] - 2023-04-17
9+
10+
### Added
11+
12+
- feat(services/azdfs): support rename (#1929)
13+
- test: Increate copy/move nested path test depth (#1932)
14+
- feat(layers): add a basic minitrace layer (#1931)
15+
- feat: add Writer::abort method (#1937)
16+
- feat(services/gcs): Allow setting PredefinedAcl (#1989)
17+
- feat(services/oss): add oss cache-control header support (#1986)
18+
- feat: Add PreconditionFailed Error so users can handle them (#1993)
19+
- feat: add http if_none_match support (#1995)
20+
- feat: add oss if-none-match support (#1997)
21+
- feat(services/gcs): Allow setting default storage_class (#1996)
22+
- feat(binding/C): add clang-format for c binding (#2003)
23+
24+
### Changed
25+
26+
- refactor: Polish the behavior of scan (#1926)
27+
- refactor: Polish the implementation of webhdfs (#1935)
28+
29+
### Fixed
30+
31+
- fix: sled should not be enabled by default (#1923)
32+
- fix: kv adapter's writer implementation fixed to honour empty writes (#193
33+
4)
34+
- fix(services/azblob): fix copy missing content-length (#2000)
35+
36+
### Docs
37+
38+
- docs: Adding docs link to python binding (#1921)
39+
- docs(bindings/python): fix wrong doc link (#1928)
40+
- docs: Add contributing for OpenDAL (#1984)
41+
- docs: Add explanation in contributing (#1985)
42+
- docs: Feel relax in community and don't hurry (#1987)
43+
- docs: update contributing (#1998)
44+
- docs(services/memory): Fix wrong explanation (#2002)
45+
- docs: Add OpenDAL VISION (#2007)
46+
- docs: update VISION and behavior tests doc (#2009)
47+
48+
### CI
49+
50+
- ci(bindings/nodejs): Access should be set to public before publish (#1919)
51+
- ci: Re-enable webhdfs test (#1925)
52+
- chore: add .editorconfig (#1988)
53+
- ci: Fix format after adding editorconfig (#1990)
54+
855
## [v0.31.0] - 2023-04-12
956

1057
### Added
@@ -1840,6 +1887,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
18401887

18411888
Hello, OpenDAL!
18421889

1890+
[v0.31.1]: https://github.com/apache/incubator-opendal/compare/v0.31.0...v0.31.1
18431891
[v0.31.0]: https://github.com/apache/incubator-opendal/compare/v0.30.5...v0.31.0
18441892
[v0.30.5]: https://github.com/apache/incubator-opendal/compare/v0.30.4...v0.30.5
18451893
[v0.30.4]: https://github.com/apache/incubator-opendal/compare/v0.30.3...v0.30.4

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ homepage = "https://opendal.apache.org/"
3939
license = "Apache-2.0"
4040
repository = "https://github.com/apache/incubator-opendal"
4141
rust-version = "1.64"
42-
version = "0.31.0"
42+
version = "0.31.1"
4343

4444
[workspace.dependencies]
4545
opendal = { version = "0.31", path = "core" }

bindings/nodejs/npm/darwin-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-darwin-arm64",
3-
"version": "0.31.0",
3+
"version": "0.31.1",
44
"os": [
55
"darwin"
66
],

bindings/nodejs/npm/darwin-x64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-darwin-x64",
3-
"version": "0.31.0",
3+
"version": "0.31.1",
44
"os": [
55
"darwin"
66
],

bindings/nodejs/npm/linux-x64-gnu/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-linux-x64-gnu",
3-
"version": "0.31.0",
3+
"version": "0.31.1",
44
"os": [
55
"linux"
66
],

bindings/nodejs/npm/win32-x64-msvc/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-win32-x64-msvc",
3-
"version": "0.31.0",
3+
"version": "0.31.1",
44
"os": [
55
"win32"
66
],

bindings/nodejs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "opendal",
33
"author": "OpenDAL Contributors <[email protected]>",
4-
"version": "0.31.0",
4+
"version": "0.31.1",
55
"license": "Apache-2.0",
66
"main": "index.js",
77
"types": "index.d.ts",

0 commit comments

Comments
 (0)