Skip to content

Commit

Permalink
chore: release (#1188)
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>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed May 9, 2024
1 parent cb7f910 commit 9703b9d
Show file tree
Hide file tree
Showing 41 changed files with 249 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.

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

## [Unreleased]

## [0.0.8](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.7...farmfe_compiler-v0.0.8) - 2024-05-09

### Added
- support lazy compilation when targeting node ([#1035](https://github.com/farm-fe/farm/pull/1035))
- support top level await ([#1202](https://github.com/farm-fe/farm/pull/1202))

### Fixed
- circle module require ([#1290](https://github.com/farm-fe/farm/pull/1290))

### Other
- Fix/lazy compilation ([#1253](https://github.com/farm-fe/farm/pull/1253))
- Version Packages v1.1.0 ([#1214](https://github.com/farm-fe/farm/pull/1214))
- update swc to v0.90 ([#1227](https://github.com/farm-fe/farm/pull/1227))

## [0.0.7](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.6...farmfe_compiler-v0.0.7) - 2024-04-13

### Other
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.7"
version = "0.0.8"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
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.5.0" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.5" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.5" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.5" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.5" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.5" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.5" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.7" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.5" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.6" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.5" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.7" }
farmfe_core = { path = "../core", version = "0.5.1" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.6" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.6" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.6" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.6" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.6" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.6" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.8" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.6" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.7" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.6" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.8" }
farmfe_utils = { path = "../utils", version = "0.1.4" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.7" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.5" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.5" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.5" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.5" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.8" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.6" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.6" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.6" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.6" }
num_cpus = "1.16.0"

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

## [Unreleased]

## [0.5.1](https://github.com/farm-fe/farm/compare/farmfe_core-v0.5.0...farmfe_core-v0.5.1) - 2024-05-09

### Added
- support lazy compilation when targeting node ([#1035](https://github.com/farm-fe/farm/pull/1035))

### Other
- Fix/lazy compilation ([#1253](https://github.com/farm-fe/farm/pull/1253))
- Version Packages v1.1.0 ([#1214](https://github.com/farm-fe/farm/pull/1214))
- update swc to v0.90 ([#1227](https://github.com/farm-fe/farm/pull/1227))

## [0.5.0](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.5...farmfe_core-v0.5.0) - 2024-04-13

### 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.5.0"
version = "0.5.1"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
license = "MIT"
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.8](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.7...farmfe_plugin_css-v0.0.8) - 2024-05-09

### Fixed
- vite migrations bugs ([#1236](https://github.com/farm-fe/farm/pull/1236))
- css import url panic ([#1187](https://github.com/farm-fe/farm/pull/1187))

## [0.0.7](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.6...farmfe_plugin_css-v0.0.7) - 2024-04-13

### 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.7"
version = "0.0.8"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
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.5.0" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.7" }
farmfe_core = { path = "../core", version = "0.5.1" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.8" }
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.7" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.8" }
5 changes: 5 additions & 0 deletions crates/plugin_define/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.6](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.5...farmfe_plugin_define-v0.0.6) - 2024-05-09

### Fixed
- vite migrations bugs ([#1236](https://github.com/farm-fe/farm/pull/1236))

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

### 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.5"
version = "0.0.6"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
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.5.0" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.7" }
farmfe_core = { path = "../core", version = "0.5.1" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.8" }
farmfe_utils = { path = "../utils", version = "0.1.4" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.7" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.8" }
11 changes: 11 additions & 0 deletions crates/plugin_html/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.6](https://github.com/farm-fe/farm/compare/farmfe_plugin_html-v0.0.5...farmfe_plugin_html-v0.0.6) - 2024-05-09

### Added
- support isolate runtime resource ([#1200](https://github.com/farm-fe/farm/pull/1200))

### Fixed
- vite migrations bugs ([#1236](https://github.com/farm-fe/farm/pull/1236))

### Other
- Fix/lazy compilation ([#1253](https://github.com/farm-fe/farm/pull/1253))

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

### 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.5"
version = "0.0.6"
edition = "2021"
authors = ["brightwu(吴明亮) <[email protected]>"]
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.5.0" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.7" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.7" }
farmfe_core = { path = "../core", version = "0.5.1" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.8" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.8" }
rkyv = { version = "0.7.42" }
5 changes: 5 additions & 0 deletions crates/plugin_json/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.6](https://github.com/farm-fe/farm/compare/farmfe_plugin_json-v0.0.5...farmfe_plugin_json-v0.0.6) - 2024-05-09

### Fixed
- vite migrations bugs ([#1236](https://github.com/farm-fe/farm/pull/1236))

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

### Other
Expand Down

0 comments on commit 9703b9d

Please sign in to comment.