Skip to content

Commit 3e01960

Browse files
chore: release (#2008)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b4db6c2 commit 3e01960

File tree

45 files changed

+253
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+253
-117
lines changed

Cargo.lock

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/bench/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.3...farmfe_bench-v0.0.4) - 2024-12-24
11+
12+
### Other
13+
14+
- updated the following local packages: farmfe_compiler, farmfe_core
15+
1016
## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.2...farmfe_bench-v0.0.3) - 2024-12-09
1117

1218
### Other

crates/bench/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "farmfe_bench"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
authors = ["brightwu(吴明亮) <[email protected]>"]
66
license = "MIT"
@@ -11,8 +11,8 @@ documentation = "https://docs.rs/farmfe_bench"
1111

1212
[dependencies]
1313
criterion2 = { version = "0.11.0", default-features = false }
14-
farmfe_core = { path = "../core", version = "0.7.1" }
15-
farmfe_compiler = { path = "../compiler", version = "0.0.13" }
14+
farmfe_core = { path = "../core", version = "0.7.2" }
15+
farmfe_compiler = { path = "../compiler", version = "0.0.14" }
1616

1717
[[bench]]
1818
name = "compiler_bench"

crates/compiler/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.14](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.13...farmfe_compiler-v0.0.14) - 2024-12-24
10+
11+
### Added
12+
13+
- support invalidate module (#2005)
14+
15+
### Fixed
16+
17+
- namespace fallback when use literal computed (#2022)
18+
919
## [0.0.13](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.12...farmfe_compiler-v0.0.13) - 2024-12-09
1020

1121
### Added

crates/compiler/Cargo.toml

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "farmfe_compiler"
3-
version = "0.0.13"
3+
version = "0.0.14"
44
edition = "2021"
55
authors = ["brightwu(吴明亮) <[email protected]>"]
66
license = "MIT"
@@ -10,25 +10,25 @@ repository = "https://github.com/farm-fe/farm"
1010
documentation = "https://docs.rs/farmfe_compiler"
1111

1212
[dependencies]
13-
farmfe_core = { path = "../core", version = "0.7.1" }
14-
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.13" }
15-
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.13" }
16-
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.12" }
17-
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.13" }
18-
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.13" }
19-
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.12" }
20-
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.15" }
21-
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.13" }
22-
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.13" }
23-
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.13" }
24-
farmfe_toolkit = { path = "../toolkit", version = "0.0.15" }
13+
farmfe_core = { path = "../core", version = "0.7.2" }
14+
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.14" }
15+
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.14" }
16+
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.13" }
17+
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.14" }
18+
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.14" }
19+
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.13" }
20+
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.16" }
21+
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.14" }
22+
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.14" }
23+
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.14" }
24+
farmfe_toolkit = { path = "../toolkit", version = "0.0.16" }
2525
farmfe_utils = { path = "../utils", version = "0.1.6" }
26-
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.15" }
27-
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.13" }
28-
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.13" }
29-
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.13" }
30-
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.13" }
31-
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.7" }
26+
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.16" }
27+
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.14" }
28+
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.14" }
29+
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.14" }
30+
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.14" }
31+
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.8" }
3232
num_cpus = "1.16.0"
3333
farmfe_testing = { path = "../macro_testing", version = "0.0.2" }
3434

crates/core/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.2](https://github.com/farm-fe/farm/compare/farmfe_core-v0.7.1...farmfe_core-v0.7.2) - 2024-12-24
11+
12+
### Added
13+
14+
- support invalidate module (#2005)
15+
1016
## [0.7.1](https://github.com/farm-fe/farm/compare/farmfe_core-v0.7.0...farmfe_core-v0.7.1) - 2024-12-09
1117

1218
### Added

crates/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "farmfe_core"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
edition = "2021"
55
authors = ["brightwu(吴明亮) <[email protected]>"]
66
license = "MIT"

crates/plugin_bundle/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.8](https://github.com/farm-fe/farm/compare/farmfe_plugin_bundle-v0.0.7...farmfe_plugin_bundle-v0.0.8) - 2024-12-24
10+
11+
### Other
12+
13+
- updated the following local packages: farmfe_core
14+
915
## [0.0.7](https://github.com/farm-fe/farm/compare/farmfe_plugin_bundle-v0.0.6...farmfe_plugin_bundle-v0.0.7) - 2024-12-09
1016

1117
### Fixed

crates/plugin_bundle/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "farmfe_plugin_bundle"
3-
version = "0.0.7"
3+
version = "0.0.8"
44
edition = "2021"
55
authors = ["shulandmimi"]
66
license = "MIT"
@@ -10,9 +10,9 @@ repository = "https://github.com/farm-fe/farm"
1010
documentation = "https://docs.rs/farmfe_plugin_bundle"
1111

1212
[dependencies]
13-
farmfe_core = { path = "../core", version = "0.7.1" }
14-
farmfe_toolkit = { path = "../toolkit", version = "0.0.15" }
15-
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.15" }
13+
farmfe_core = { path = "../core", version = "0.7.2" }
14+
farmfe_toolkit = { path = "../toolkit", version = "0.0.16" }
15+
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.16" }
1616
farmfe_utils = { path = "../utils", version = "0.1.6" }
1717

1818
[features]

crates/plugin_css/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.16](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.15...farmfe_plugin_css-v0.0.16) - 2024-12-24
10+
11+
### Other
12+
13+
- updated the following local packages: farmfe_core
14+
915
## [0.0.15](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.14...farmfe_plugin_css-v0.0.15) - 2024-12-09
1016

1117
### Other

crates/plugin_css/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "farmfe_plugin_css"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
authors = ["brightwu(吴明亮) <[email protected]>"]
66
license = "MIT"
@@ -10,11 +10,11 @@ repository = "https://github.com/farm-fe/farm"
1010
documentation = "https://docs.rs/farmfe_plugin_css"
1111

1212
[dependencies]
13-
farmfe_core = { path = "../core", version = "0.7.1" }
14-
farmfe_toolkit = { path = "../toolkit", version = "0.0.15" }
13+
farmfe_core = { path = "../core", version = "0.7.2" }
14+
farmfe_toolkit = { path = "../toolkit", version = "0.0.16" }
1515
farmfe_utils = { path = "../utils", version = "0.1.6" }
1616
farmfe_macro_cache_item = { path = "../macro_cache_item", version = "0.1.3" }
1717
rkyv = { version = "0.7.42" }
1818

1919
[dev-dependencies]
20-
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.15" }
20+
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.16" }

0 commit comments

Comments
 (0)