From 08d031f42f5cfe3383596c6441b3719d7547bb40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 02:52:18 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- crates/bench/Cargo.toml | 2 +- crates/compiler/CHANGELOG.md | 6 ++++++ crates/compiler/Cargo.toml | 4 ++-- crates/create-farm-rs/CHANGELOG.md | 6 ++++++ crates/create-farm-rs/Cargo.toml | 2 +- crates/plugin_resolve/CHANGELOG.md | 6 ++++++ crates/plugin_resolve/Cargo.toml | 2 +- packages/create-farm/Cargo.toml | 2 +- 9 files changed, 27 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3f5957c5..a46d2991f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -996,7 +996,7 @@ dependencies = [ [[package]] name = "create-farm" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "clap", @@ -1596,7 +1596,7 @@ dependencies = [ [[package]] name = "farmfe_compiler" -version = "0.0.16" +version = "0.0.17" dependencies = [ "farmfe_core", "farmfe_plugin_bundle", @@ -1806,7 +1806,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_resolve" -version = "0.0.15" +version = "0.0.16" dependencies = [ "farmfe_core", "farmfe_testing_helpers", diff --git a/crates/bench/Cargo.toml b/crates/bench/Cargo.toml index 0f1af7740..074906baf 100644 --- a/crates/bench/Cargo.toml +++ b/crates/bench/Cargo.toml @@ -12,7 +12,7 @@ documentation = "https://docs.rs/farmfe_bench" [dependencies] criterion2 = { version = "0.11.0", default-features = false } farmfe_core = { path = "../core", version = "0.7.3" } -farmfe_compiler = { path = "../compiler", version = "0.0.16" } +farmfe_compiler = { path = "../compiler", version = "0.0.17" } [[bench]] name = "compiler_bench" diff --git a/crates/compiler/CHANGELOG.md b/crates/compiler/CHANGELOG.md index 3bf4f1810..f1ededbdc 100644 --- a/crates/compiler/CHANGELOG.md +++ b/crates/compiler/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.17](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.16...farmfe_compiler-v0.0.17) - 2025-01-13 + +### Other + +- updated the following local packages: farmfe_plugin_resolve + ## [0.0.16](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.15...farmfe_compiler-v0.0.16) - 2025-01-09 ### Fixed diff --git a/crates/compiler/Cargo.toml b/crates/compiler/Cargo.toml index 0884844de..40ffecd1d 100644 --- a/crates/compiler/Cargo.toml +++ b/crates/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_compiler" -version = "0.0.16" +version = "0.0.17" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -12,7 +12,7 @@ documentation = "https://docs.rs/farmfe_compiler" [dependencies] farmfe_core = { path = "../core", version = "0.7.3" } farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.15" } -farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.15" } +farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.16" } farmfe_plugin_script = { path = "../plugin_script", version = "0.0.15" } farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.15" } farmfe_plugin_html = { path = "../plugin_html", version = "0.0.15" } diff --git a/crates/create-farm-rs/CHANGELOG.md b/crates/create-farm-rs/CHANGELOG.md index 434f2124d..1ab93019f 100644 --- a/crates/create-farm-rs/CHANGELOG.md +++ b/crates/create-farm-rs/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/farm-fe/farm/compare/create-farm-v0.1.5...create-farm-v0.1.6) - 2025-01-13 + +### Added + +- *(create)* add support for tauri 2 (#2001) + ## [0.1.5](https://github.com/farm-fe/farm/compare/create-farm-v0.1.4...create-farm-v0.1.5) - 2025-01-09 ### Other diff --git a/crates/create-farm-rs/Cargo.toml b/crates/create-farm-rs/Cargo.toml index 7b2fa85c4..dc629ce65 100644 --- a/crates/create-farm-rs/Cargo.toml +++ b/crates/create-farm-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "create-farm" -version = "0.1.5" +version = "0.1.6" edition = "2021" authors = ["Erkelost"] license = "MIT" diff --git a/crates/plugin_resolve/CHANGELOG.md b/crates/plugin_resolve/CHANGELOG.md index e44a11863..c4861108e 100644 --- a/crates/plugin_resolve/CHANGELOG.md +++ b/crates/plugin_resolve/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.16](https://github.com/farm-fe/farm/compare/farmfe_plugin_resolve-v0.0.15...farmfe_plugin_resolve-v0.0.16) - 2025-01-13 + +### Fixed + +- *(plugin_resolve)* duplicated querystring on external (#2057) + ## [0.0.15](https://github.com/farm-fe/farm/compare/farmfe_plugin_resolve-v0.0.14...farmfe_plugin_resolve-v0.0.15) - 2025-01-09 ### Other diff --git a/crates/plugin_resolve/Cargo.toml b/crates/plugin_resolve/Cargo.toml index a06d9545b..0bc0f1f1c 100644 --- a/crates/plugin_resolve/Cargo.toml +++ b/crates/plugin_resolve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_resolve" -version = "0.0.15" +version = "0.0.16" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" diff --git a/packages/create-farm/Cargo.toml b/packages/create-farm/Cargo.toml index d6b0535a0..4fbeaeece 100644 --- a/packages/create-farm/Cargo.toml +++ b/packages/create-farm/Cargo.toml @@ -19,7 +19,7 @@ napi = { version = "2.15.2", default-features = false, features = [ "serde-json", ] } napi-derive = "2.15.2" -create-farm = { version = "0.1.5", path = "../../crates/create-farm-rs" } +create-farm = { version = "0.1.6", path = "../../crates/create-farm-rs" } [build-dependencies] napi-build = "2.0.1"