Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Apr 8, 2024
1 parent edcc0dc commit d5a3cfa
Show file tree
Hide file tree
Showing 41 changed files with 222 additions and 107 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

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

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

## [Unreleased]

## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.3...farmfe_compiler-v0.0.4) - 2024-04-08

### Added
- improve tree shake traverse ([#1118](https://github.com/farm-fe/farm/pull/1118))

## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.2...farmfe_compiler-v0.0.3) - 2024-04-01

### Fixed
Expand Down
36 changes: 18 additions & 18 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.3"
version = "0.0.4"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -10,24 +10,24 @@ repository = "https://github.com/farm-fe/farm"
documentation = "https://docs.rs/farmfe_compiler"

[dependencies]
farmfe_core = { path = "../core", version = "0.4.4" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.3" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.3" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.3" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.3" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.3" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.3" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.4" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.3" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.3" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.3" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.5" }
farmfe_core = { path = "../core", version = "0.4.5" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.4" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.4" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.4" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.4" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.4" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.4" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.5" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.4" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.4" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.4" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.6" }
farmfe_utils = { path = "../utils", version = "0.1.4" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.3" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.3" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.3" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.3" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.4" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.4" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.4" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.4" }
num_cpus = "1.16.0"

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

## [Unreleased]

## [0.4.5](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.4...farmfe_core-v0.4.5) - 2024-04-08

### Fixed
- persistent cache conflicts ([#1131](https://github.com/farm-fe/farm/pull/1131))

### Other
- Chore/example vue2 ([#1127](https://github.com/farm-fe/farm/pull/1127))

## [0.4.4](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.3...farmfe_core-v0.4.4) - 2024-04-02

### Other
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.4.4"
version = "0.4.5"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions crates/plugin_css/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.5](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.4...farmfe_plugin_css-v0.0.5) - 2024-04-08

### Fixed
- persistent cache conflicts ([#1131](https://github.com/farm-fe/farm/pull/1131))

## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.3...farmfe_plugin_css-v0.0.4) - 2024-04-02

### Other
Expand Down
8 changes: 4 additions & 4 deletions crates/plugin_css/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_plugin_css"
version = "0.0.4"
version = "0.0.5"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -10,11 +10,11 @@ repository = "https://github.com/farm-fe/farm"
documentation = "https://docs.rs/farmfe_plugin_css"

[dependencies]
farmfe_core = { path = "../core", version = "0.4.4" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.5" }
farmfe_core = { path = "../core", version = "0.4.5" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.6" }
farmfe_utils = { path = "../utils", version = "0.1.4" }
farmfe_macro_cache_item = { path = "../macro_cache_item", version = "0.1.3" }
rkyv = { version = "0.7.42" }

[dev-dependencies]
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" }
6 changes: 6 additions & 0 deletions crates/plugin_define/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.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.3...farmfe_plugin_define-v0.0.4) - 2024-04-08

### Other
- release ([#1115](https://github.com/farm-fe/farm/pull/1115))
- release ([#1114](https://github.com/farm-fe/farm/pull/1114))

## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.2...farmfe_plugin_define-v0.0.3) - 2024-04-01

### Other
Expand Down
8 changes: 4 additions & 4 deletions crates/plugin_define/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_plugin_define"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/farm-fe/farm"
documentation = "https://docs.rs/farmfe_plugin_define"

[dependencies]
farmfe_core = { path = "../core", version = "0.4.4" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.5" }
farmfe_core = { path = "../core", version = "0.4.5" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.6" }
farmfe_utils = { path = "../utils", version = "0.1.4" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" }
9 changes: 9 additions & 0 deletions crates/plugin_html/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_html-v0.0.3...farmfe_plugin_html-v0.0.4) - 2024-04-08

### Fixed
- make publicPath and publicDir configuration work properly. ([#1121](https://github.com/farm-fe/farm/pull/1121))

### Other
- release ([#1115](https://github.com/farm-fe/farm/pull/1115))
- release ([#1114](https://github.com/farm-fe/farm/pull/1114))

## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_html-v0.0.2...farmfe_plugin_html-v0.0.3) - 2024-04-01

### Other
Expand Down
8 changes: 4 additions & 4 deletions crates/plugin_html/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_plugin_html"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/farm-fe/farm"
documentation = "https://docs.rs/farmfe_plugin_html"

[dependencies]
farmfe_core = { path = "../core", version = "0.4.4" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.5" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" }
farmfe_core = { path = "../core", version = "0.4.5" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.6" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" }
rkyv = { version = "0.7.42" }
6 changes: 6 additions & 0 deletions crates/plugin_json/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.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_json-v0.0.3...farmfe_plugin_json-v0.0.4) - 2024-04-08

### Other
- release ([#1115](https://github.com/farm-fe/farm/pull/1115))
- release ([#1114](https://github.com/farm-fe/farm/pull/1114))

## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_json-v0.0.2...farmfe_plugin_json-v0.0.3) - 2024-04-01

### Other
Expand Down
8 changes: 4 additions & 4 deletions crates/plugin_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_plugin_json"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -12,6 +12,6 @@ documentation = "https://docs.rs/farmfe_plugin_json"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
farmfe_core = { path = "../core", version = "0.4.4" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.5" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" }
farmfe_core = { path = "../core", version = "0.4.5" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.6" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" }
Loading

0 comments on commit d5a3cfa

Please sign in to comment.