Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump versions to prepare v0.47.1 release #4759

Merged
merged 4 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci_bindings_nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ jobs:
linux:
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
env:
NAPI_FEATURES: services-all
strategy:
matrix:
settings:
Expand Down Expand Up @@ -161,6 +163,8 @@ jobs:
windows:
runs-on: windows-latest
if: "startsWith(github.ref, 'refs/tags/')"
env:
NAPI_FEATURES: services-all
strategy:
matrix:
settings:
Expand Down Expand Up @@ -204,6 +208,8 @@ jobs:
macos:
runs-on: macos-latest
if: "startsWith(github.ref, 'refs/tags/')"
env:
NAPI_FEATURES: services-all
strategy:
matrix:
settings:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/release_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,19 @@ jobs:
strategy:
# Publish package one by one instead of flooding the registry
max-parallel: 1
fail-fast: false
matrix:
# Order here is sensitive, as it will be used to determine the order of publishing
package:
- "core"
- "integrations/dav-server"
- "integrations/object_store"
- "integrations/dav-server"
- "integrations/fuse3"
- "integrations/unftp-sbe"
- "integrations/virtiofs"
- "bin/oay" # depends on integrations/dav-server
- "bin/oli"
- "bin/ofs"
- "bin/ofs" # depends on integrations/fuse3
steps:
- uses: actions/checkout@v4
- name: Checkout python env
Expand Down
6 changes: 3 additions & 3 deletions bin/oay/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions bin/oay/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ homepage = "https://opendal.apache.org/"
license = "Apache-2.0"
repository = "https://github.com/apache/opendal"
rust-version = "1.75"
version = "0.41.3"
version = "0.41.4"

[features]
default = ["frontends-webdav", "frontends-s3"]

frontends-s3 = []
frontends-webdav = [
"dep:dav-server",
"dep:dav-server-opendalfs",
"dep:bytes",
"dep:futures-util",
"dep:dav-server",
"dep:dav-server-opendalfs",
"dep:bytes",
"dep:futures-util",
]

[dependencies]
Expand All @@ -47,20 +47,20 @@ bytes = { version = "1.5.0", optional = true }
chrono = "0.4.31"
clap = { version = "4", features = ["cargo", "string"] }
dav-server = { version = "0.6", optional = true }
dav-server-opendalfs = { version = "0.0.2", path = "../../integrations/dav-server", optional = true }
dav-server-opendalfs = { version = "0.0.3", path = "../../integrations/dav-server", optional = true }
dirs = "5.0.1"
futures = "0.3"
futures-util = { version = "0.3.29", optional = true }
opendal = { version = "0.47.0", path = "../../core", features = [
"services-fs",
"services-fs",
] }
quick-xml = { version = "0.32", features = ["serialize", "overlapped-lists"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.34", features = [
"fs",
"macros",
"rt-multi-thread",
"io-std",
"fs",
"macros",
"rt-multi-thread",
"io-std",
] }
toml = "0.8.12"
tower = "0.4"
Expand Down
Loading
Loading