Skip to content

Commit ef069a2

Browse files
authored
Bump to version 0.30.5 (#1811)
* Bump to version 0.30.5 Signed-off-by: Xuanwo <[email protected]> * update Signed-off-by: Xuanwo <[email protected]> --------- Signed-off-by: Xuanwo <[email protected]>
1 parent 7f68838 commit ef069a2

File tree

12 files changed

+59
-15
lines changed

12 files changed

+59
-15
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,49 @@ 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.30.5] - 2023-03-31
9+
10+
### Added
11+
12+
- feat(oli): implement `oli rm` (#1774)
13+
- feat(bindings/nodejs): Support presign (#1772)
14+
- feat(oli): implement `oli stat` (#1778)
15+
- feat(bindings/object_store): Add support for list and list_with_delimiter (#1784)
16+
- feat(oli): implement `oli cp -r` (#1787)
17+
- feat(bindings/nodejs): Make PresignedRequest serializable (#1797)
18+
- feat(binding/c): add build.rs and cbindgen as dep to gen header (#1793)
19+
- feat(bindings/nodejs): Add more APIs and examples (#1799)
20+
- feat: reader_with and writer_with (#1803)
21+
- feat: add override_cache_control (#1804)
22+
- feat: add cache_control to OpWrite (#1806)
23+
24+
### Changed
25+
26+
- refactor(oli): switch to `Operator::scan` and `Operator::remove_all` (#1779)
27+
- refactor(bindings/nodejs): Polish benchmark to make it more readable (#1810)
28+
29+
### Fixed
30+
31+
- fix(oli): set the root of fs service to '/' (#1773)
32+
- fix: align WebDAV stat with RFC specification (#1783)
33+
- fix(bindings/nodejs): fix read benchmark (#1805)
34+
35+
### CI
36+
37+
- ci: Split clippy and docs check (#1785)
38+
- ci(bindings/nodejs): Support aarch64-apple-darwin (#1780)
39+
- ci(bindings/nodejs): publish with LICENSE & NOTICE (#1790)
40+
- ci(services/redis): Add dragonfly test (#1808)
41+
42+
### Chore
43+
44+
- chore(bindings/python): update maturin to 0.14.16 (#1777)
45+
- chore(bin/oli): Set oli version from package version (#1786)
46+
- chore(oli): set cli version in a central place (#1789)
47+
- chore: don't pin time version (#1788)
48+
- chore(bindings/nodejs): init benchmark (#1798)
49+
- chore(bindings/nodejs): Fix generated headers (#1802)
50+
851
## [v0.30.4] - 2023-03-26
952

1053
### Added
@@ -1715,6 +1758,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
17151758

17161759
Hello, OpenDAL!
17171760

1761+
[v0.30.5]: https://github.com/apache/incubator-opendal/compare/v0.30.4...v0.30.5
17181762
[v0.30.4]: https://github.com/apache/incubator-opendal/compare/v0.30.3...v0.30.4
17191763
[v0.30.3]: https://github.com/apache/incubator-opendal/compare/v0.30.2...v0.30.3
17201764
[v0.30.2]: https://github.com/apache/incubator-opendal/compare/v0.30.1...v0.30.2

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/oli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"]
2525
license = "Apache-2.0"
2626
name = "oli"
2727
repository = "https://github.com/apache/incubator-opendal"
28-
version = "0.30.4"
28+
version = "0.30.5"
2929

3030
[features]
3131
# Enable services dashmap support

bindings/nodejs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ license = "Apache-2.0"
2323
name = "opendal-nodejs"
2424
publish = false
2525
repository = "https://github.com/apache/incubator-opendal"
26-
version = "0.30.4"
26+
version = "0.30.5"
2727

2828
[lib]
2929
crate-type = ["cdylib"]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-darwin-arm64",
3-
"version": "0.30.4",
3+
"version": "0.30.5",
44
"os": [
55
"darwin"
66
],

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-darwin-x64",
3-
"version": "0.30.4",
3+
"version": "0.30.5",
44
"os": [
55
"darwin"
66
],

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-linux-x64-gnu",
3-
"version": "0.30.4",
3+
"version": "0.30.5",
44
"os": [
55
"linux"
66
],

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-win32-x64-msvc",
3-
"version": "0.30.4",
3+
"version": "0.30.5",
44
"os": [
55
"win32"
66
],

bindings/nodejs/package.json

Lines changed: 1 addition & 1 deletion
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.30.4",
4+
"version": "0.30.5",
55
"license": "Apache-2.0",
66
"main": "index.js",
77
"types": "index.d.ts",

bindings/object_store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ license = "Apache-2.0"
2424
name = "object_store_opendal"
2525
repository = "https://github.com/apache/incubator-opendal"
2626
rust-version = "1.60" # MSRV for this project - please update while bump versions
27-
version = "0.30.4"
27+
version = "0.30.5"
2828

2929
[dependencies]
3030
async-trait = "0.1"

0 commit comments

Comments
 (0)