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 Jul 31, 2024
1 parent a5554b9 commit 5546709
Show file tree
Hide file tree
Showing 50 changed files with 272 additions and 152 deletions.
82 changes: 41 additions & 41 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ repository = { workspace = true }

[dependencies]
criterion2 = { version = "0.11.0", default-features = false }
farmfe_core = { path = "../core", version = "0.6.4" }
farmfe_compiler = { path = "../compiler", version = "0.0.11" }
farmfe_core = { path = "../core", version = "0.6.5" }
farmfe_compiler = { path = "../compiler", version = "0.0.12" }

[[bench]]
name = "compiler_bench"
Expand Down
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.12](https://github.com/fu050409/farm/compare/farmfe_compiler-v0.0.11...farmfe_compiler-v0.0.12) - 2024-07-31

### Fixed
- single bundle ([#1653](https://github.com/fu050409/farm/pull/1653))

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

### Added
Expand Down
40 changes: 20 additions & 20 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.11"
version = "0.0.12"
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.6.4" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.11" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.11" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.10" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.11" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.11" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.10" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.13" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.11" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.11" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.11" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.13" }
farmfe_utils = { path = "../utils", version = "0.1.5" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.11" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.11" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.11" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.11" }
farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.5" }
farmfe_core = { path = "../core", version = "0.6.5" }
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_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" }
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.5](https://github.com/fu050409/farm/compare/farmfe_core-v0.6.4...farmfe_core-v0.6.5) - 2024-07-31

### Fixed
- single bundle ([#1653](https://github.com/fu050409/farm/pull/1653))

## [0.6.4](https://github.com/farm-fe/farm/compare/farmfe_core-v0.6.3...farmfe_core-v0.6.4) - 2024-07-25

### Added
Expand Down
Loading

0 comments on commit 5546709

Please sign in to comment.