Skip to content

Commit e871a6f

Browse files
authored
Bump to version 0.33.2 (#2148)
Signed-off-by: Xuanwo <[email protected]>
1 parent dd290ab commit e871a6f

File tree

8 files changed

+41
-12
lines changed

8 files changed

+41
-12
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ 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.33.2] - 2023-04-27
9+
10+
### Added
11+
12+
- feat(core): add test for `stat_with_if_none_match` (#2122)
13+
- feat(services/gcs): Add start-after support for list (#2107)
14+
- feat(services/azblob): Add supporting presign (#2120)
15+
- feat(services/gcs): Add supporting presign support (#2126)
16+
- feat(java): connect rust async/await with java future (#2112)
17+
- docs: add hdfs classpath related troubleshoot (#2130)
18+
- fix(clippy): suppress dead_code check (#2135)
19+
- feat(core): Add `cache-control` to Metadata (#2136)
20+
- fix(services/gcs): Remove HOST header to avoid gcs RESET connection (#2139)
21+
- test(core): test for `write_with_cache_control` (#2131)
22+
- test(core): test for `write_with_content_type` (#2140)
23+
- test(core): test for `read_with_if_none_match` (#2141)
24+
- feat(services/supabase): Add read/write/stat support for supabase (#2119)
25+
26+
### Docs
27+
28+
- docs: add hdfs classpath related troubleshoot (#2130)
29+
30+
### CI
31+
32+
- ci: Mark job as skipped if owner is not apache (#2128)
33+
- ci: Enable native-tls to test gcs presign for workaround (#2138)
34+
835
## [v0.33.1] - 2023-04-25
936

1037
### Added
@@ -1985,6 +2012,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
19852012

19862013
Hello, OpenDAL!
19872014

2015+
[v0.33.2]: https://github.com/apache/incubator-opendal/compare/v0.33.1...v0.33.2
2016+
[v0.33.1]: https://github.com/apache/incubator-opendal/compare/v0.33.0...v0.33.1
19882017
[v0.33.0]: https://github.com/apache/incubator-opendal/compare/v0.32.0...v0.33.0
19892018
[v0.32.0]: https://github.com/apache/incubator-opendal/compare/v0.31.1...v0.32.0
19902019
[v0.31.1]: https://github.com/apache/incubator-opendal/compare/v0.31.0...v0.31.1

Cargo.lock

+6-6
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
@@ -40,7 +40,7 @@ homepage = "https://opendal.apache.org/"
4040
license = "Apache-2.0"
4141
repository = "https://github.com/apache/incubator-opendal"
4242
rust-version = "1.64"
43-
version = "0.33.1"
43+
version = "0.33.2"
4444

4545
[workspace.dependencies]
4646
opendal = { version = "0.33", path = "core" }

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opendal/lib-darwin-arm64",
33
"repository": "[email protected]/apache/incubator-opendal.git",
4-
"version": "0.33.1",
4+
"version": "0.33.2",
55
"os": [
66
"darwin"
77
],

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opendal/lib-darwin-x64",
33
"repository": "[email protected]/apache/incubator-opendal.git",
4-
"version": "0.33.1",
4+
"version": "0.33.2",
55
"os": [
66
"darwin"
77
],

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.33.1",
3+
"version": "0.33.2",
44
"repository": "[email protected]/apache/incubator-opendal.git",
55
"os": [
66
"linux"

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.33.1",
3+
"version": "0.33.2",
44
"repository": "[email protected]/apache/incubator-opendal.git",
55
"os": [
66
"win32"

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.33.1",
4+
"version": "0.33.2",
55
"license": "Apache-2.0",
66
"main": "index.js",
77
"types": "index.d.ts",

0 commit comments

Comments
 (0)