From 11f789c25f4d06ceb4ef0c38cba1dc7f343ca21d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 08:59:06 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- crates/compiler/CHANGELOG.md | 5 +++++ crates/compiler/Cargo.toml | 2 +- crates/create-farm-rs/CHANGELOG.md | 5 +++++ crates/create-farm-rs/Cargo.toml | 2 +- packages/create-farm/CHANGELOG.md | 7 ++++++- packages/create-farm/Cargo.toml | 4 ++-- 7 files changed, 23 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c9f88c61d0..e111d2e719 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -930,7 +930,7 @@ dependencies = [ [[package]] name = "create-farm" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "clap", @@ -943,7 +943,7 @@ dependencies = [ [[package]] name = "create_farm_node" -version = "0.1.1" +version = "0.1.2" dependencies = [ "create-farm", "napi", @@ -1496,7 +1496,7 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" [[package]] name = "farmfe_compiler" -version = "0.0.9" +version = "0.0.10" dependencies = [ "farmfe_core", "farmfe_plugin_bundle", diff --git a/crates/compiler/CHANGELOG.md b/crates/compiler/CHANGELOG.md index c3e9707f3d..da927dd79f 100644 --- a/crates/compiler/CHANGELOG.md +++ b/crates/compiler/CHANGELOG.md @@ -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-16 + +### 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 diff --git a/crates/compiler/Cargo.toml b/crates/compiler/Cargo.toml index 682c4838f6..716426eff9 100644 --- a/crates/compiler/Cargo.toml +++ b/crates/compiler/Cargo.toml @@ -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" diff --git a/crates/create-farm-rs/CHANGELOG.md b/crates/create-farm-rs/CHANGELOG.md index e0eb199827..53fe22f4e0 100644 --- a/crates/create-farm-rs/CHANGELOG.md +++ b/crates/create-farm-rs/CHANGELOG.md @@ -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-16 + +### 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 diff --git a/crates/create-farm-rs/Cargo.toml b/crates/create-farm-rs/Cargo.toml index 4bcf403a45..bced5375fe 100644 --- a/crates/create-farm-rs/Cargo.toml +++ b/crates/create-farm-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "create-farm" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = ["Erkelost"] license = "MIT" diff --git a/packages/create-farm/CHANGELOG.md b/packages/create-farm/CHANGELOG.md index 465a96b749..beb3047425 100644 --- a/packages/create-farm/CHANGELOG.md +++ b/packages/create-farm/CHANGELOG.md @@ -36,13 +36,18 @@ ### Patch Changes - 068c3ea5: support more frameworks electron, tauri, nestjs - All notable changes to this project will be documented in this file. +All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.2](https://github.com/farm-fe/farm/compare/create_farm_node-v0.1.1...create_farm_node-v0.1.2) - 2024-07-16 + +### Other +- Version Packages ([#1614](https://github.com/farm-fe/farm/pull/1614)) + ## [0.1.1](https://github.com/farm-fe/farm/compare/create_farm_node-v0.1.0...create_farm_node-v0.1.1) - 2024-05-28 ### Other diff --git a/packages/create-farm/Cargo.toml b/packages/create-farm/Cargo.toml index 059d631389..bdf65f98f6 100644 --- a/packages/create-farm/Cargo.toml +++ b/packages/create-farm/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "create_farm_node" -version = "0.1.1" +version = "0.1.2" authors = ["Erkelost"] license = "MIT" description = "Create Farm cli tool" @@ -19,7 +19,7 @@ napi = { version = "2.15.2", default-features = false, features = [ "serde-json", ] } napi-derive = "2.15.2" -create-farm = { version = "0.1.1", path = "../../crates/create-farm-rs" } +create-farm = { version = "0.1.2", path = "../../crates/create-farm-rs" } [build-dependencies] napi-build = "2.0.1"