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 Nov 25, 2024
1 parent b05a2c8 commit 44d2e0b
Show file tree
Hide file tree
Showing 47 changed files with 273 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.3](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.2...farmfe_bench-v0.0.3) - 2024-11-25

### Other

- updated the following local packages: farmfe_compiler, farmfe_core

## [0.0.2](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.1...farmfe_bench-v0.0.2) - 2024-10-31

### 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.2"
version = "0.0.3"
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.0" }
farmfe_compiler = { path = "../compiler", version = "0.0.12" }
farmfe_core = { path = "../core", version = "0.8.0" }
farmfe_compiler = { path = "../compiler", version = "0.0.13" }

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

## [Unreleased]

## [0.0.13](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.12...farmfe_compiler-v0.0.13) - 2024-11-25

### Added

- support tree shake import namespace ([#1942](https://github.com/farm-fe/farm/pull/1942))

### Fixed

- bundle export cjs entry file ([#1964](https://github.com/farm-fe/farm/pull/1964))
- external alias [#1957](https://github.com/farm-fe/farm/pull/1957) ([#1959](https://github.com/farm-fe/farm/pull/1959))
- bundle global variable preserve ([#1940](https://github.com/farm-fe/farm/pull/1940))

## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.11...farmfe_compiler-v0.0.12) - 2024-10-31

### 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.12"
version = "0.0.13"
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.0" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.12" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.12" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.11" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.12" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.12" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.11" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.14" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.12" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.12" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.12" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.14" }
farmfe_core = { path = "../core", version = "0.8.0" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.13" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.13" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.12" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.13" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.13" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.12" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.15" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.13" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.13" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.13" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.15" }
farmfe_utils = { path = "../utils", version = "0.1.6" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.12" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.12" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.12" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.12" }
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.6" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.15" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.13" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.13" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.13" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.13" }
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.7" }
num_cpus = "1.16.0"
farmfe_testing = { path = "../macro_testing", version = "0.0.2" }

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

## [Unreleased]

## [0.8.0](https://github.com/farm-fe/farm/compare/farmfe_core-v0.7.0...farmfe_core-v0.8.0) - 2024-11-25

### Fixed

- freebsd build & cargo publish ([#1938](https://github.com/farm-fe/farm/pull/1938))
- *(runtime)* async cache ([#1902](https://github.com/farm-fe/farm/pull/1902))

## [0.7.0](https://github.com/farm-fe/farm/compare/farmfe_core-v0.6.4...farmfe_core-v0.7.0) - 2024-10-31

### Added
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.0"
version = "0.8.0"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions crates/plugin_bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ 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_plugin_bundle-v0.0.6...farmfe_plugin_bundle-v0.0.7) - 2024-11-25

### Fixed

- bundle export cjs entry file ([#1964](https://github.com/farm-fe/farm/pull/1964))
- bundle global variable preserve ([#1940](https://github.com/farm-fe/farm/pull/1940))

## [0.0.6](https://github.com/farm-fe/farm/compare/farmfe_plugin_bundle-v0.0.5...farmfe_plugin_bundle-v0.0.6) - 2024-10-31

### Fixed
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.6"
version = "0.0.7"
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.0" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.14" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" }
farmfe_core = { path = "../core", version = "0.8.0" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.15" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.15" }
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.15](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.14...farmfe_plugin_css-v0.0.15) - 2024-11-25

### Other

- updated the following local packages: farmfe_core

## [0.0.14](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.13...farmfe_plugin_css-v0.0.14) - 2024-10-31

### Added
Expand Down
Loading

0 comments on commit 44d2e0b

Please sign in to comment.