From f6a161bab350ef03e914086a039dd707c86f13b4 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Fri, 23 Feb 2024 13:04:11 +0800 Subject: [PATCH] ci: Remove version suffix from package versions (#4254) * ci: Remove version suffix from package versions Signed-off-by: Xuanwo * Fix typo Signed-off-by: Xuanwo * Also remove core version in rust packages since it's not true Signed-off-by: Xuanwo --------- Signed-off-by: Xuanwo --- .github/workflows/release_rust.yml | 2 ++ .gitignore | 1 + .typos.toml | 2 ++ CHANGELOG.md | 4 ++-- bin/oay/Cargo.lock | 4 ++-- bin/oay/Cargo.toml | 4 ++-- bin/oay/DEPENDENCIES.rust.tsv | 4 ++-- bin/ofs/Cargo.lock | 2 +- bin/ofs/Cargo.toml | 2 +- bin/ofs/DEPENDENCIES.rust.tsv | 9 +++++---- bin/oli/Cargo.lock | 2 +- bin/oli/Cargo.toml | 2 +- bin/oli/DEPENDENCIES.rust.tsv | 2 +- bindings/c/Cargo.toml | 4 ++-- bindings/c/DEPENDENCIES.rust.tsv | 2 +- bindings/cpp/Cargo.toml | 2 +- bindings/cpp/DEPENDENCIES.rust.tsv | 2 +- bindings/dotnet/Cargo.toml | 2 +- bindings/dotnet/DEPENDENCIES.rust.tsv | 2 +- bindings/haskell/Cargo.toml | 2 +- bindings/haskell/DEPENDENCIES.rust.tsv | 2 +- bindings/java/Cargo.toml | 2 +- bindings/java/DEPENDENCIES.rust.tsv | 2 +- bindings/java/pom.xml | 2 +- bindings/lua/Cargo.toml | 2 +- bindings/lua/DEPENDENCIES.rust.tsv | 2 +- bindings/nodejs/Cargo.toml | 2 +- bindings/nodejs/DEPENDENCIES.rust.tsv | 2 +- bindings/nodejs/npm/darwin-arm64/package.json | 4 ++-- bindings/nodejs/npm/darwin-x64/package.json | 4 ++-- bindings/nodejs/npm/linux-arm64-gnu/package.json | 4 ++-- bindings/nodejs/npm/linux-arm64-musl/package.json | 4 ++-- bindings/nodejs/npm/linux-x64-gnu/package.json | 4 ++-- bindings/nodejs/npm/win32-arm64-msvc/package.json | 4 ++-- bindings/nodejs/npm/win32-x64-msvc/package.json | 4 ++-- bindings/ocaml/Cargo.toml | 2 +- bindings/ocaml/DEPENDENCIES.rust.tsv | 2 +- bindings/php/Cargo.toml | 2 +- bindings/php/DEPENDENCIES.rust.tsv | 2 +- bindings/python/Cargo.toml | 2 +- bindings/python/DEPENDENCIES.rust.tsv | 2 +- bindings/ruby/Cargo.toml | 2 +- bindings/ruby/DEPENDENCIES.rust.tsv | 2 +- integrations/dav-server/Cargo.toml | 2 +- integrations/dav-server/DEPENDENCIES.rust.tsv | 2 +- integrations/object_store/Cargo.toml | 2 +- integrations/object_store/DEPENDENCIES.rust.tsv | 2 +- scripts/constants.py | 2 +- scripts/dependencies.py | 0 49 files changed, 66 insertions(+), 60 deletions(-) mode change 100644 => 100755 scripts/dependencies.py diff --git a/.github/workflows/release_rust.yml b/.github/workflows/release_rust.yml index afacf808ba91..26dae0b8272d 100644 --- a/.github/workflows/release_rust.yml +++ b/.github/workflows/release_rust.yml @@ -64,6 +64,8 @@ jobs: need-protoc: true - name: Dryrun ${{ matrix.package }} + # Only dryrun test upon core. + if: matrix.package == 'core' working-directory: ${{ matrix.package }} run: cargo publish --all-features --dry-run env: diff --git a/.gitignore b/.gitignore index 40617580a84a..5f15585d6716 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ .idea **/target +**/vendor dist/ # env files for backends diff --git a/.typos.toml b/.typos.toml index 7c7e9a28a834..90ebb39fe047 100644 --- a/.typos.toml +++ b/.typos.toml @@ -25,6 +25,8 @@ "thw" = "thw" # Showed up in test. "hsa" = "hsa" +# Tech words +"WRONLY" = "WRONLY" [files] extend-exclude = [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 7385db9ac5ef..faf5f03076b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). * feat(services/hdfs-native): Add capabilities for hdfs-native service by @jihuayu in https://github.com/apache/opendal/pull/4174 * feat(services/sqlite): Add list capability supported for sqlite by @jihuayu in https://github.com/apache/opendal/pull/4180 * feat(services/azblob): support multi write for azblob by @wcy-fdu in https://github.com/apache/opendal/pull/4181 -* feat(release): Implement releasing OpenDAL components seperately by @Xuanwo in https://github.com/apache/opendal/pull/4196 +* feat(release): Implement releasing OpenDAL components separately by @Xuanwo in https://github.com/apache/opendal/pull/4196 * feat: object store adapter based on v0.9 by @waynexia in https://github.com/apache/opendal/pull/4233 * feat(bin/ofs): implement fuse for linux by @ho-229 in https://github.com/apache/opendal/pull/4179 ### Changed @@ -66,7 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). * chore(deps): bump actions/setup-dotnet from 3 to 4 by @dependabot in https://github.com/apache/opendal/pull/4115 * chore(deps): bump mongodb from 2.7.1 to 2.8.0 by @dependabot in https://github.com/apache/opendal/pull/4110 * chore(deps): bump quick-xml from 0.30.0 to 0.31.0 by @dependabot in https://github.com/apache/opendal/pull/4113 -* chore: Make every components seperate, remove workspace by @Xuanwo in https://github.com/apache/opendal/pull/4134 +* chore: Make every components separate, remove workspace by @Xuanwo in https://github.com/apache/opendal/pull/4134 * chore: Fix build of core by @Xuanwo in https://github.com/apache/opendal/pull/4137 * chore: Fix workflow links for opendal by @Xuanwo in https://github.com/apache/opendal/pull/4147 * chore(website): Bump download link for 0.45.0 release by @morristai in https://github.com/apache/opendal/pull/4149 diff --git a/bin/oay/Cargo.lock b/bin/oay/Cargo.lock index 0859ea046368..7ed6313e9541 100644 --- a/bin/oay/Cargo.lock +++ b/bin/oay/Cargo.lock @@ -419,7 +419,7 @@ dependencies = [ [[package]] name = "dav-server-opendalfs" -version = "0.0.0+core.0.45.1" +version = "0.0.1" dependencies = [ "anyhow", "bytes", @@ -1125,7 +1125,7 @@ dependencies = [ [[package]] name = "oay" -version = "0.41.1+core.0.45.1" +version = "0.41.1" dependencies = [ "anyhow", "axum", diff --git a/bin/oay/Cargo.toml b/bin/oay/Cargo.toml index 07c11daf9956..8b651855b16c 100644 --- a/bin/oay/Cargo.toml +++ b/bin/oay/Cargo.toml @@ -27,7 +27,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.41.1+core.0.45.1" +version = "0.41.1" [features] default = ["frontends-webdav", "frontends-s3"] @@ -47,7 +47,7 @@ bytes = { version = "1.5.0", optional = true } chrono = "0.4.31" clap = { version = "4", features = ["cargo", "string"] } dav-server = { version = "0.5.8", optional = true } -dav-server-opendalfs = { version = "0.0.0", path = "../../integrations/dav-server", optional = true } +dav-server-opendalfs = { version = "0.0.1", path = "../../integrations/dav-server", optional = true } dirs = "5.0.1" futures = "0.3" futures-util = { version = "0.3.29", optional = true } diff --git a/bin/oay/DEPENDENCIES.rust.tsv b/bin/oay/DEPENDENCIES.rust.tsv index ec5467db0608..1f09c13d1c4e 100644 --- a/bin/oay/DEPENDENCIES.rust.tsv +++ b/bin/oay/DEPENDENCIES.rust.tsv @@ -42,7 +42,7 @@ cpufeatures@0.2.12 X X crunchy@0.2.2 X crypto-common@0.1.6 X X dav-server@0.5.8 X -dav-server-opendalfs@0.0.0+core.0.45.1 X +dav-server-opendalfs@0.0.1 X der@0.7.8 X X deranged@0.3.11 X X digest@0.10.7 X X @@ -115,7 +115,7 @@ num-integer@0.1.45 X X num-iter@0.1.43 X X num-traits@0.2.17 X X num_cpus@1.16.0 X X -oay@0.41.1+core.0.45.1 X +oay@0.41.1 X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X diff --git a/bin/ofs/Cargo.lock b/bin/ofs/Cargo.lock index bbce1185d517..2e371cb7cf0f 100644 --- a/bin/ofs/Cargo.lock +++ b/bin/ofs/Cargo.lock @@ -1023,7 +1023,7 @@ dependencies = [ [[package]] name = "ofs" -version = "0.0.2+core.0.45.1" +version = "0.0.2" dependencies = [ "anyhow", "bytes", diff --git a/bin/ofs/Cargo.toml b/bin/ofs/Cargo.toml index 327617013f41..7d319ad3180d 100644 --- a/bin/ofs/Cargo.toml +++ b/bin/ofs/Cargo.toml @@ -20,7 +20,7 @@ categories = ["filesystem"] description = "OpenDAL File System" keywords = ["storage", "data", "s3", "fs", "azblob"] name = "ofs" -version = "0.0.2+core.0.45.1" +version = "0.0.2" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bin/ofs/DEPENDENCIES.rust.tsv b/bin/ofs/DEPENDENCIES.rust.tsv index 7cedfb06674a..5eb933a2e1aa 100644 --- a/bin/ofs/DEPENDENCIES.rust.tsv +++ b/bin/ofs/DEPENDENCIES.rust.tsv @@ -5,7 +5,7 @@ aho-corasick@1.1.2 X X android-tzdata@0.1.1 X X android_system_properties@0.1.5 X X anstream@0.6.11 X X -anstyle@1.0.5 X X +anstyle@1.0.6 X X anstyle-parse@0.2.3 X X anstyle-query@1.0.2 X X anstyle-wincon@3.0.2 X X @@ -25,7 +25,7 @@ byteorder@1.5.0 X X bytes@1.5.0 X cc@1.0.83 X X cfg-if@1.0.0 X X -chrono@0.4.33 X X +chrono@0.4.34 X X clap@4.5.1 X X clap_builder@4.5.1 X X clap_derive@4.5.0 X X @@ -47,7 +47,7 @@ dlv-list@0.5.2 X X either@1.9.0 X X encoding_rs@0.8.33 X X X env_filter@0.1.0 X X -env_logger@0.11.1 X X +env_logger@0.11.2 X X equivalent@1.0.1 X X fastrand@1.9.0 X X flagset@0.4.4 X @@ -109,7 +109,7 @@ num-iter@0.1.43 X X num-traits@0.2.17 X X num_cpus@1.16.0 X X object@0.32.2 X X -ofs@0.0.2+core.0.45.1 X +ofs@0.0.2 X once_cell@1.19.0 X X opendal@0.45.1 X openssl-probe@0.1.5 X X @@ -156,6 +156,7 @@ serde_json@1.0.113 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X +sharded-slab@0.1.7 X signature@2.2.0 X X simple_asn1@0.6.2 X slab@0.4.9 X diff --git a/bin/oli/Cargo.lock b/bin/oli/Cargo.lock index 5e906ae86389..da7d3f79178f 100644 --- a/bin/oli/Cargo.lock +++ b/bin/oli/Cargo.lock @@ -1853,7 +1853,7 @@ dependencies = [ [[package]] name = "oli" -version = "0.41.1+core.0.45.1" +version = "0.41.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/bin/oli/Cargo.toml b/bin/oli/Cargo.toml index 16bde0719436..288c3f8f622a 100644 --- a/bin/oli/Cargo.toml +++ b/bin/oli/Cargo.toml @@ -27,7 +27,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.41.1+core.0.45.1" +version = "0.41.1" [features] # Enable services dashmap support diff --git a/bin/oli/DEPENDENCIES.rust.tsv b/bin/oli/DEPENDENCIES.rust.tsv index 46d255785644..16aca4c15739 100644 --- a/bin/oli/DEPENDENCIES.rust.tsv +++ b/bin/oli/DEPENDENCIES.rust.tsv @@ -103,7 +103,7 @@ num-iter@0.1.43 X X num-traits@0.2.17 X X num_cpus@1.16.0 X X object@0.32.2 X X -oli@0.41.1+core.0.45.1 X +oli@0.41.1 X once_cell@1.19.0 X X opendal@0.45.1 X openssl-probe@0.1.5 X X diff --git a/bindings/c/Cargo.toml b/bindings/c/Cargo.toml index 8b486eee244d..2b5d051fe7ab 100644 --- a/bindings/c/Cargo.toml +++ b/bindings/c/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.44.3+core.0.45.1" +version = "0.44.3" [lib] crate-type = ["cdylib", "staticlib"] @@ -37,7 +37,7 @@ cbindgen = "0.26.0" [dependencies] bytes = "1.4.0" once_cell = "1.17.1" -opendal = { version = "0.45", path = "../../core", features = [ +opendal = { version = "0.45.1", path = "../../core", features = [ "layers-blocking", ] } tokio = { version = "1.27", features = ["fs", "macros", "rt-multi-thread"] } diff --git a/bindings/c/DEPENDENCIES.rust.tsv b/bindings/c/DEPENDENCIES.rust.tsv index 5e0159198296..540ac121ff5e 100644 --- a/bindings/c/DEPENDENCIES.rust.tsv +++ b/bindings/c/DEPENDENCIES.rust.tsv @@ -98,7 +98,7 @@ num_cpus@1.16.0 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-c@0.44.3+core.0.45.1 X +opendal-c@0.44.3 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X os_str_bytes@6.6.1 X X diff --git a/bindings/cpp/Cargo.toml b/bindings/cpp/Cargo.toml index ddcea103d288..57f1b7cfb731 100644 --- a/bindings/cpp/Cargo.toml +++ b/bindings/cpp/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.44.3+core.0.45.1" +version = "0.44.3" [lib] crate-type = ["staticlib"] diff --git a/bindings/cpp/DEPENDENCIES.rust.tsv b/bindings/cpp/DEPENDENCIES.rust.tsv index 8ff84d982534..de9c110a2f76 100644 --- a/bindings/cpp/DEPENDENCIES.rust.tsv +++ b/bindings/cpp/DEPENDENCIES.rust.tsv @@ -91,7 +91,7 @@ num-traits@0.2.17 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-cpp@0.44.3+core.0.45.1 X +opendal-cpp@0.44.3 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X pem@3.0.3 X diff --git a/bindings/dotnet/Cargo.toml b/bindings/dotnet/Cargo.toml index 08280d5927fe..a0320fdb772a 100644 --- a/bindings/dotnet/Cargo.toml +++ b/bindings/dotnet/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-dotnet" publish = false -version = "0.1.1+core.0.45.1" +version = "0.1.1" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/dotnet/DEPENDENCIES.rust.tsv b/bindings/dotnet/DEPENDENCIES.rust.tsv index 4b5c2126ec06..8bd51baf3afb 100644 --- a/bindings/dotnet/DEPENDENCIES.rust.tsv +++ b/bindings/dotnet/DEPENDENCIES.rust.tsv @@ -85,7 +85,7 @@ num-traits@0.2.17 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-dotnet@0.1.1+core.0.45.1 X +opendal-dotnet@0.1.1 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X pem@3.0.3 X diff --git a/bindings/haskell/Cargo.toml b/bindings/haskell/Cargo.toml index 98198c146fc5..32d9da1cec82 100644 --- a/bindings/haskell/Cargo.toml +++ b/bindings/haskell/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.44.3+core.0.45.1" +version = "0.44.3" [lib] crate-type = ["cdylib"] diff --git a/bindings/haskell/DEPENDENCIES.rust.tsv b/bindings/haskell/DEPENDENCIES.rust.tsv index f2e09f331ed0..0c76beb6d89c 100644 --- a/bindings/haskell/DEPENDENCIES.rust.tsv +++ b/bindings/haskell/DEPENDENCIES.rust.tsv @@ -85,7 +85,7 @@ num-traits@0.2.17 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-hs@0.44.3+core.0.45.1 X +opendal-hs@0.44.3 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X pem@3.0.3 X diff --git a/bindings/java/Cargo.toml b/bindings/java/Cargo.toml index 9439c3420f39..117a4ee62e0a 100644 --- a/bindings/java/Cargo.toml +++ b/bindings/java/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.45.1+core.0.45.1" +version = "0.45.1" [lib] crate-type = ["cdylib"] diff --git a/bindings/java/DEPENDENCIES.rust.tsv b/bindings/java/DEPENDENCIES.rust.tsv index 26ed008fc31d..da5d8f9324c4 100644 --- a/bindings/java/DEPENDENCIES.rust.tsv +++ b/bindings/java/DEPENDENCIES.rust.tsv @@ -92,7 +92,7 @@ num_cpus@1.16.0 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-java@0.45.1+core.0.45.1 X +opendal-java@0.45.1 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X parking_lot@0.12.1 X X diff --git a/bindings/java/pom.xml b/bindings/java/pom.xml index ea4b863593ea..db025c82bdaf 100644 --- a/bindings/java/pom.xml +++ b/bindings/java/pom.xml @@ -32,7 +32,7 @@ org.apache.opendal opendal-java - 0.45.1+core.0.45.1 + 0.45.1 Apache OpenDALâ„¢ diff --git a/bindings/lua/Cargo.toml b/bindings/lua/Cargo.toml index 4ed78028fa33..c0b6bbd73f93 100644 --- a/bindings/lua/Cargo.toml +++ b/bindings/lua/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-lua" publish = false -version = "0.1.1+core.0.45.1" +version = "0.1.1" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/lua/DEPENDENCIES.rust.tsv b/bindings/lua/DEPENDENCIES.rust.tsv index dfd8c77b23a8..2d3712bc6a99 100644 --- a/bindings/lua/DEPENDENCIES.rust.tsv +++ b/bindings/lua/DEPENDENCIES.rust.tsv @@ -92,7 +92,7 @@ num-traits@0.2.17 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-lua@0.1.1+core.0.45.1 X +opendal-lua@0.1.1 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X pem@3.0.3 X diff --git a/bindings/nodejs/Cargo.toml b/bindings/nodejs/Cargo.toml index cd6e3e8f5833..7a4e99dcd1f6 100644 --- a/bindings/nodejs/Cargo.toml +++ b/bindings/nodejs/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.45.1+core.0.45.1" +version = "0.45.1" [features] default = [ diff --git a/bindings/nodejs/DEPENDENCIES.rust.tsv b/bindings/nodejs/DEPENDENCIES.rust.tsv index 6c2a0661f4cb..cb64ffe70cd9 100644 --- a/bindings/nodejs/DEPENDENCIES.rust.tsv +++ b/bindings/nodejs/DEPENDENCIES.rust.tsv @@ -98,7 +98,7 @@ num_cpus@1.16.0 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-nodejs@0.45.1+core.0.45.1 X +opendal-nodejs@0.45.1 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X pem@3.0.3 X diff --git a/bindings/nodejs/npm/darwin-arm64/package.json b/bindings/nodejs/npm/darwin-arm64/package.json index e7de93667a77..c440ef017e09 100644 --- a/bindings/nodejs/npm/darwin-arm64/package.json +++ b/bindings/nodejs/npm/darwin-arm64/package.json @@ -1,7 +1,7 @@ { "name": "@opendal/lib-darwin-arm64", "repository": "git@github.com/apache/opendal.git", - "version": "0.45.1+core.0.45.1", + "version": "0.45.1", "os": [ "darwin" ], @@ -16,4 +16,4 @@ "engines": { "node": ">= 10" } -} \ No newline at end of file +} diff --git a/bindings/nodejs/npm/darwin-x64/package.json b/bindings/nodejs/npm/darwin-x64/package.json index 9eead896076b..f9251820273d 100644 --- a/bindings/nodejs/npm/darwin-x64/package.json +++ b/bindings/nodejs/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-darwin-x64", - "version": "0.45.1+core.0.45.1", + "version": "0.45.1", "repository": "git@github.com/apache/opendal.git", "os": [ "darwin" @@ -16,4 +16,4 @@ "engines": { "node": ">= 10" } -} \ No newline at end of file +} diff --git a/bindings/nodejs/npm/linux-arm64-gnu/package.json b/bindings/nodejs/npm/linux-arm64-gnu/package.json index 1b09c42bc507..f7bdf9914352 100644 --- a/bindings/nodejs/npm/linux-arm64-gnu/package.json +++ b/bindings/nodejs/npm/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-linux-arm64-gnu", - "version": "0.45.1+core.0.45.1", + "version": "0.45.1", "repository": "git@github.com/apache/opendal.git", "os": [ "linux" @@ -19,4 +19,4 @@ "libc": [ "glibc" ] -} \ No newline at end of file +} diff --git a/bindings/nodejs/npm/linux-arm64-musl/package.json b/bindings/nodejs/npm/linux-arm64-musl/package.json index a93744c11910..fae83c99a932 100644 --- a/bindings/nodejs/npm/linux-arm64-musl/package.json +++ b/bindings/nodejs/npm/linux-arm64-musl/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-linux-arm64-musl", - "version": "0.45.1+core.0.45.1", + "version": "0.45.1", "repository": "git@github.com/apache/opendal.git", "os": [ "linux" @@ -19,4 +19,4 @@ "libc": [ "glibc" ] -} \ No newline at end of file +} diff --git a/bindings/nodejs/npm/linux-x64-gnu/package.json b/bindings/nodejs/npm/linux-x64-gnu/package.json index eede024c2dd8..fc64acc971a9 100644 --- a/bindings/nodejs/npm/linux-x64-gnu/package.json +++ b/bindings/nodejs/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-linux-x64-gnu", - "version": "0.45.1+core.0.45.1", + "version": "0.45.1", "repository": "git@github.com/apache/opendal.git", "os": [ "linux" @@ -19,4 +19,4 @@ "libc": [ "glibc" ] -} \ No newline at end of file +} diff --git a/bindings/nodejs/npm/win32-arm64-msvc/package.json b/bindings/nodejs/npm/win32-arm64-msvc/package.json index 0329d03eb3e1..c81e1ad6d8f9 100644 --- a/bindings/nodejs/npm/win32-arm64-msvc/package.json +++ b/bindings/nodejs/npm/win32-arm64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-win32-arm64-msvc", - "version": "0.45.1+core.0.45.1", + "version": "0.45.1", "repository": "git@github.com/apache/opendal.git", "os": [ "win32" @@ -16,4 +16,4 @@ "engines": { "node": ">= 10" } -} \ No newline at end of file +} diff --git a/bindings/nodejs/npm/win32-x64-msvc/package.json b/bindings/nodejs/npm/win32-x64-msvc/package.json index 03f2db2636df..54645678ff98 100644 --- a/bindings/nodejs/npm/win32-x64-msvc/package.json +++ b/bindings/nodejs/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-win32-x64-msvc", - "version": "0.45.1+core.0.45.1", + "version": "0.45.1", "repository": "git@github.com/apache/opendal.git", "os": [ "win32" @@ -16,4 +16,4 @@ "engines": { "node": ">= 10" } -} \ No newline at end of file +} diff --git a/bindings/ocaml/Cargo.toml b/bindings/ocaml/Cargo.toml index 49e0e1221740..09347ade690d 100644 --- a/bindings/ocaml/Cargo.toml +++ b/bindings/ocaml/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-ocaml" publish = false -version = "0.0.0+core.0.45.1" +version = "0.0.0" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/ocaml/DEPENDENCIES.rust.tsv b/bindings/ocaml/DEPENDENCIES.rust.tsv index 1e211a199d6a..bbf4d874956d 100644 --- a/bindings/ocaml/DEPENDENCIES.rust.tsv +++ b/bindings/ocaml/DEPENDENCIES.rust.tsv @@ -93,7 +93,7 @@ ocaml-sys@0.22.3 X ocaml-sys@0.23.0 X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-ocaml@0.0.0+core.0.45.1 X +opendal-ocaml@0.0.0 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X pem@3.0.3 X diff --git a/bindings/php/Cargo.toml b/bindings/php/Cargo.toml index fd89e62e6ff9..4e2f62898d4f 100644 --- a/bindings/php/Cargo.toml +++ b/bindings/php/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-php" publish = false -version = "0.1.1+core.0.45.1" +version = "0.1.1" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/php/DEPENDENCIES.rust.tsv b/bindings/php/DEPENDENCIES.rust.tsv index 1eaa66e38175..80b68d299519 100644 --- a/bindings/php/DEPENDENCIES.rust.tsv +++ b/bindings/php/DEPENDENCIES.rust.tsv @@ -122,7 +122,7 @@ num-traits@0.2.17 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-php@0.1.1+core.0.45.1 X +opendal-php@0.1.1 X openssl@0.10.63 X openssl-macros@0.1.1 X X openssl-probe@0.1.5 X X diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 3fc86ad95069..7ed79ab2ce16 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.45.1+core.0.45.1" +version = "0.45.1" [features] default = [ diff --git a/bindings/python/DEPENDENCIES.rust.tsv b/bindings/python/DEPENDENCIES.rust.tsv index 4abf30f4d994..bd727af56183 100644 --- a/bindings/python/DEPENDENCIES.rust.tsv +++ b/bindings/python/DEPENDENCIES.rust.tsv @@ -92,7 +92,7 @@ num_cpus@1.16.0 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-python@0.45.1+core.0.45.1 X +opendal-python@0.45.1 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X parking_lot@0.12.1 X X diff --git a/bindings/ruby/Cargo.toml b/bindings/ruby/Cargo.toml index cc21e543e979..49d46686e52f 100644 --- a/bindings/ruby/Cargo.toml +++ b/bindings/ruby/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-ruby" publish = false -version = "0.1.1+core.0.45.1" +version = "0.1.1" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/ruby/DEPENDENCIES.rust.tsv b/bindings/ruby/DEPENDENCIES.rust.tsv index 745540b58294..5a06fdd20a6f 100644 --- a/bindings/ruby/DEPENDENCIES.rust.tsv +++ b/bindings/ruby/DEPENDENCIES.rust.tsv @@ -97,7 +97,7 @@ num-traits@0.2.17 X X object@0.32.2 X X once_cell@1.19.0 X X opendal@0.45.1 X -opendal-ruby@0.1.1+core.0.45.1 X +opendal-ruby@0.1.1 X openssl-probe@0.1.5 X X ordered-multimap@0.7.1 X peeking_take_while@0.1.2 X X diff --git a/integrations/dav-server/Cargo.toml b/integrations/dav-server/Cargo.toml index 25443b6eb62c..9919526cafa6 100644 --- a/integrations/dav-server/Cargo.toml +++ b/integrations/dav-server/Cargo.toml @@ -18,7 +18,7 @@ [package] description = "Use OpenDAL as a backend to access data in various service with WebDAV protocol" name = "dav-server-opendalfs" -version = "0.0.0+core.0.45.1" +version = "0.0.1" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/integrations/dav-server/DEPENDENCIES.rust.tsv b/integrations/dav-server/DEPENDENCIES.rust.tsv index d654ca069fe3..2940c4b46a2f 100644 --- a/integrations/dav-server/DEPENDENCIES.rust.tsv +++ b/integrations/dav-server/DEPENDENCIES.rust.tsv @@ -31,7 +31,7 @@ cpufeatures@0.2.12 X X crunchy@0.2.2 X crypto-common@0.1.6 X X dav-server@0.5.8 X -dav-server-opendalfs@0.0.0+core.0.45.1 X +dav-server-opendalfs@0.0.1 X der@0.7.8 X X deranged@0.3.11 X X digest@0.10.7 X X diff --git a/integrations/object_store/Cargo.toml b/integrations/object_store/Cargo.toml index f6d354901e66..8b398f47020e 100644 --- a/integrations/object_store/Cargo.toml +++ b/integrations/object_store/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.67" -version = "0.43.0+core.0.45.1" +version = "0.43.0" [dependencies] async-trait = "0.1" diff --git a/integrations/object_store/DEPENDENCIES.rust.tsv b/integrations/object_store/DEPENDENCIES.rust.tsv index 0d3b4fddb6d8..efacc9115cd5 100644 --- a/integrations/object_store/DEPENDENCIES.rust.tsv +++ b/integrations/object_store/DEPENDENCIES.rust.tsv @@ -93,7 +93,7 @@ num-traits@0.2.17 X X num_cpus@1.16.0 X X object@0.32.2 X X object_store@0.9.0 X X -object_store_opendal@0.43.0+core.0.45.1 X +object_store_opendal@0.43.0 X once_cell@1.19.0 X X opendal@0.45.1 X openssl-probe@0.1.5 X X diff --git a/scripts/constants.py b/scripts/constants.py index 11818229b273..edd16c44f803 100755 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -77,7 +77,7 @@ def get_package_version(package): # cargo_toml not exists, we should handle case by case ideally. # # However, those packages are not mature enough, it's much easier for us to always return `0.0.0` instead. - return f"0.0.0+core.{core_version}" + return f"0.0.0" if __name__ == "__main__": diff --git a/scripts/dependencies.py b/scripts/dependencies.py old mode 100644 new mode 100755