Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 16, 2025
1 parent 0163299 commit 5099da8
Show file tree
Hide file tree
Showing 48 changed files with 258 additions and 120 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions crates/bench/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.7](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.6...farmfe_bench-v0.0.7) - 2025-01-16

### Other

- updated the following local packages: farmfe_compiler, farmfe_core

## [0.0.6](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.5...farmfe_bench-v0.0.6) - 2025-01-09

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_bench"
version = "0.0.6"
version = "0.0.7"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
license = "MIT"
Expand All @@ -11,8 +11,8 @@ 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_core = { path = "../core", version = "0.7.4" }
farmfe_compiler = { path = "../compiler", version = "0.0.17" }

[[bench]]
name = "compiler_bench"
Expand Down
6 changes: 6 additions & 0 deletions crates/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-16

### Fixed

- persistent cache panic when using addFileWatchFile with query #2067 (#2068)

## [0.0.16](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.15...farmfe_compiler-v0.0.16) - 2025-01-09

### Fixed
Expand Down
38 changes: 19 additions & 19 deletions crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_compiler"
version = "0.0.16"
version = "0.0.17"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
license = "MIT"
Expand All @@ -10,25 +10,25 @@ repository = "https://github.com/farm-fe/farm"
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_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" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.14" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.17" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.15" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.15" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.15" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.17" }
farmfe_core = { path = "../core", version = "0.7.4" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.16" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.16" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.16" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.16" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.16" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.15" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.18" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.16" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.16" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.16" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.18" }
farmfe_utils = { path = "../utils", version = "0.1.6" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.17" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.15" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.15" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.15" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.15" }
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.9" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.18" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.16" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.16" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.16" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.16" }
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.10" }
num_cpus = "1.16.0"
farmfe_testing = { path = "../macro_testing", version = "0.0.2" }

Expand Down
6 changes: 6 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.4](https://github.com/farm-fe/farm/compare/farmfe_core-v0.7.3...farmfe_core-v0.7.4) - 2025-01-16

### Fixed

- persistent cache panic when using addFileWatchFile with query #2067 (#2068)

## [0.7.3](https://github.com/farm-fe/farm/compare/farmfe_core-v0.7.2...farmfe_core-v0.7.3) - 2025-01-09

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_core"
version = "0.7.3"
version = "0.7.4"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions crates/create-farm-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-16

### 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
Expand Down
2 changes: 1 addition & 1 deletion crates/create-farm-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "create-farm"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = ["Erkelost"]
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions crates/plugin_bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.10](https://github.com/farm-fe/farm/compare/farmfe_plugin_bundle-v0.0.9...farmfe_plugin_bundle-v0.0.10) - 2025-01-16

### Other

- updated the following local packages: farmfe_core

## [0.0.9](https://github.com/farm-fe/farm/compare/farmfe_plugin_bundle-v0.0.8...farmfe_plugin_bundle-v0.0.9) - 2025-01-09

### Other
Expand Down
8 changes: 4 additions & 4 deletions crates/plugin_bundle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_plugin_bundle"
version = "0.0.9"
version = "0.0.10"
edition = "2021"
authors = ["shulandmimi"]
license = "MIT"
Expand All @@ -10,9 +10,9 @@ repository = "https://github.com/farm-fe/farm"
documentation = "https://docs.rs/farmfe_plugin_bundle"

[dependencies]
farmfe_core = { path = "../core", version = "0.7.3" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.17" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.17" }
farmfe_core = { path = "../core", version = "0.7.4" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.18" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.18" }
farmfe_utils = { path = "../utils", version = "0.1.6" }

[features]
Expand Down
6 changes: 6 additions & 0 deletions crates/plugin_css/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.18](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.17...farmfe_plugin_css-v0.0.18) - 2025-01-16

### Other

- updated the following local packages: farmfe_core

## [0.0.17](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.16...farmfe_plugin_css-v0.0.17) - 2025-01-09

### Other
Expand Down
Loading

0 comments on commit 5099da8

Please sign in to comment.