Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 19, 2024
1 parent b37c22b commit 0d05ef4
Show file tree
Hide file tree
Showing 47 changed files with 237 additions and 119 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.

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.10](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.9...farmfe_compiler-v0.0.10) - 2024-07-19

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

## [0.0.9](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.8...farmfe_compiler-v0.0.9) - 2024-05-28

### 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.9"
version = "0.0.10"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
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.6.2" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.9" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.9" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.8" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.9" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.9" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.8" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.11" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.9" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.9" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.9" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.11" }
farmfe_core = { path = "../core", version = "0.6.3" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.10" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.10" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.9" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.10" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.10" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.9" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.12" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.10" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.10" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.10" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.12" }
farmfe_utils = { path = "../utils", version = "0.1.5" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.11" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.9" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.9" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.9" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.9" }
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.3" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.12" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.10" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.10" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.10" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.10" }
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.4" }
num_cpus = "1.16.0"
farmfe_testing = { path = "../macro_testing", version = "0.0.2" }

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

## [Unreleased]

## [0.6.3](https://github.com/farm-fe/farm/compare/farmfe_core-v0.6.2...farmfe_core-v0.6.3) - 2024-07-19

### Fixed
- import/export minify duplicate identifier [#1625](https://github.com/farm-fe/farm/pull/1625) ([#1634](https://github.com/farm-fe/farm/pull/1634))

## [0.6.2](https://github.com/farm-fe/farm/compare/farmfe_core-v0.6.1...farmfe_core-v0.6.2) - 2024-07-15

### 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.6.2"
version = "0.6.3"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions crates/create-farm-rs/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.2](https://github.com/farm-fe/farm/compare/create-farm-v0.1.1...create-farm-v0.1.2) - 2024-07-19

### Fixed
- nestjs external error with latest version and bump version ([#1608](https://github.com/farm-fe/farm/pull/1608))

## [0.1.1](https://github.com/farm-fe/farm/compare/create-farm-v0.1.0...create-farm-v0.1.1) - 2024-07-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/create-farm-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "create-farm"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Erkelost"]
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions crates/plugin_bundle/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_plugin_bundle-v0.0.3...farmfe_plugin_bundle-v0.0.4) - 2024-07-19

### Added
- support single library bundle ([#1640](https://github.com/farm-fe/farm/pull/1640))

## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_bundle-v0.0.2...farmfe_plugin_bundle-v0.0.3) - 2024-07-15

### Other
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.3"
version = "0.0.4"
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.6.2" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.11" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.11" }
farmfe_core = { path = "../core", version = "0.6.3" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.12" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.12" }
farmfe_utils = { path = "../utils", version = "0.1.5" }

[features]
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.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.11...farmfe_plugin_css-v0.0.12) - 2024-07-19

### Fixed
- css @import starting with ~ ([#1622](https://github.com/farm-fe/farm/pull/1622))

## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.10...farmfe_plugin_css-v0.0.11) - 2024-07-15

### 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.11"
version = "0.0.12"
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.6.2" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.11" }
farmfe_core = { path = "../core", version = "0.6.3" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.12" }
farmfe_utils = { path = "../utils", version = "0.1.5" }
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.11" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.12" }
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.10](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.9...farmfe_plugin_define-v0.0.10) - 2024-07-19

### Other
- updated the following local packages: farmfe_core

## [0.0.9](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.8...farmfe_plugin_define-v0.0.9) - 2024-07-15

### Other
Expand Down
Loading

0 comments on commit 0d05ef4

Please sign in to comment.