diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f80451dfb2..1ec211a1f48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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.30.1] - 2023-03-10 + +### Docs + +- docs: Fix Operator::create() has been removed (#1560) + +### CI + +- ci: Fix python & nodejs not released correctly (#1559) + +### Chore + +- chore(bindings/nodejs): update license in package.json (#1556) + ## [v0.30.0] - 2023-03-10 ### Added @@ -1543,6 +1557,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.30.1]: https://github.com/datafuselabs/opendal/compare/v0.30.0...v0.30.1 [v0.30.0]: https://github.com/datafuselabs/opendal/compare/v0.29.1...v0.30.0 [v0.29.1]: https://github.com/datafuselabs/opendal/compare/v0.29.0...v0.29.1 [v0.29.0]: https://github.com/datafuselabs/opendal/compare/v0.28.0...v0.29.0 diff --git a/Cargo.lock b/Cargo.lock index db1d612c646..7a5dff1b966 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2080,7 +2080,7 @@ dependencies = [ [[package]] name = "object_store_opendal" -version = "0.30.0" +version = "0.30.1" dependencies = [ "async-trait", "bytes", @@ -2120,7 +2120,7 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "opendal" -version = "0.30.0" +version = "0.30.1" dependencies = [ "anyhow", "async-compat", @@ -2180,7 +2180,7 @@ dependencies = [ [[package]] name = "opendal-nodejs" -version = "0.30.0" +version = "0.30.1" dependencies = [ "futures", "napi", @@ -2192,7 +2192,7 @@ dependencies = [ [[package]] name = "opendal-python" -version = "0.30.0" +version = "0.30.1" dependencies = [ "opendal", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index 5f0f9b9065a..c33dc2734fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ keywords = ["storage", "fs", "s3", "azblob", "gcs"] license = "Apache-2.0" name = "opendal" repository = "https://github.com/datafuselabs/opendal" -version = "0.30.0" +version = "0.30.1" # MSRV of OpenDAL. Please update this field while bump. rust-version = "1.60" diff --git a/bindings/nodejs/Cargo.toml b/bindings/nodejs/Cargo.toml index 5406717ca5e..3cd0cd4d048 100644 --- a/bindings/nodejs/Cargo.toml +++ b/bindings/nodejs/Cargo.toml @@ -16,7 +16,7 @@ [package] edition = "2021" name = "opendal-nodejs" -version = "0.30.0" +version = "0.30.1" [lib] crate-type = ["cdylib"] diff --git a/bindings/object_store/Cargo.toml b/bindings/object_store/Cargo.toml index 64cf09a6a9e..f4daa3441d7 100644 --- a/bindings/object_store/Cargo.toml +++ b/bindings/object_store/Cargo.toml @@ -18,7 +18,7 @@ edition = "2021" license = "Apache-2.0" name = "object_store_opendal" repository = "https://github.com/datafuselabs/opendal" -version = "0.30.0" +version = "0.30.1" # MSRV of OpenDAL. Please update this field while bump. rust-version = "1.60" diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 362639c4e91..b5ac4d97737 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -15,7 +15,7 @@ [package] edition = "2021" name = "opendal-python" -version = "0.30.0" +version = "0.30.1" [lib] crate-type = ["cdylib"]