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 Mar 22, 2024
1 parent ee96b74 commit ccfee22
Show file tree
Hide file tree
Showing 47 changed files with 292 additions and 139 deletions.
70 changes: 35 additions & 35 deletions Cargo.lock

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

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

## [Unreleased]

## [0.0.2](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.1...farmfe_compiler-v0.0.2) - 2024-03-22

### Added
- minify modules instead of resource pots ([#1025](https://github.com/farm-fe/farm/pull/1025))
- remove if (import.meta.hot) guard for production ([#1030](https://github.com/farm-fe/farm/pull/1030))

### Fixed
- tree shake variable assign ([#1054](https://github.com/farm-fe/farm/pull/1054))
- treeshake class decl assign ([#1038](https://github.com/farm-fe/farm/pull/1038))

### Other
- Feat/update readme ([#1028](https://github.com/farm-fe/farm/pull/1028))

## [0.0.1](https://github.com/farm-fe/farm/releases/tag/farmfe_compiler-v0.0.1) - 2024-03-12

### Added
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.1"
version = "0.0.2"
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.1" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.1" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.1" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.1" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.1" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.1" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.1" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.1" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.1" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.1" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.1" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.2" }
farmfe_utils = { path = "../utils", version = "0.1.3" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.2" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.1" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.1" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.1" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.1" }
farmfe_core = { path = "../core", version = "0.4.2" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.2" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.2" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.2" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.2" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.2" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.2" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.2" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.2" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.2" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.2" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.3" }
farmfe_utils = { path = "../utils", version = "0.1.4" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.3" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.2" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.2" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.2" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.2" }
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.2](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.1...farmfe_core-v0.4.2) - 2024-03-22

### Added
- minify modules instead of resource pots ([#1025](https://github.com/farm-fe/farm/pull/1025))

### Other
- Feat/update readme ([#1028](https://github.com/farm-fe/farm/pull/1028))

## [0.4.1](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.0...farmfe_core-v0.4.1) - 2024-03-13

### Other
Expand Down
6 changes: 3 additions & 3 deletions 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.1"
version = "0.4.2"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"
no-default-features = true

[dependencies]
farmfe_macro_cache_item = { version = "0.1.2", path = "../macro_cache_item" }
farmfe_utils = { version = "0.1.3", path = "../utils" }
farmfe_macro_cache_item = { version = "0.1.3", path = "../macro_cache_item" }
farmfe_utils = { version = "0.1.4", path = "../utils" }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
Expand Down
5 changes: 5 additions & 0 deletions crates/macro_cache_item/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.1.3](https://github.com/farm-fe/farm/compare/farmfe_macro_cache_item-v0.1.2...farmfe_macro_cache_item-v0.1.3) - 2024-03-22

### Other
- Feat/update readme ([#1028](https://github.com/farm-fe/farm/pull/1028))

## [0.1.2](https://github.com/farm-fe/farm/compare/farmfe_macro_cache_item-v0.1.1...farmfe_macro_cache_item-v0.1.2) - 2024-02-06

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/macro_cache_item/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_macro_cache_item"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "Macro to create a farm cache item"
license = "MIT"
Expand Down
Loading

0 comments on commit ccfee22

Please sign in to comment.