From 332c1025aaf5baec445331e2f0c4db05d1539a8f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 18 May 2026 15:42:46 +0800 Subject: Bump version to 0.1.9 --- CHANGELOG.md | 22 ++++++++++- Cargo.lock | 43 +++------------------- Cargo.toml | 2 +- README.md | 2 +- docs/_zh_CN/pages/1-creating-your-first-program.md | 2 +- docs/pages/1-creating-your-first-program.md | 2 +- docs/res/guide.txt | 2 +- mingling/Cargo.toml | 4 +- mingling/README.md | 2 +- mling/res/version.txt | 2 +- 10 files changed, 36 insertions(+), 47 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b0c3aa..3ab33a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ # Changelogs -### Release 0.1.8 +### Release 0.1.9 + +### Fixes: + +None + +### Optimizings: + +None + +#### Features: + +None + +#### **BREAKING CHANGES**: + +None + +--- + +### Release 0.1.8 (2026-05-18) #### Fixes: None diff --git a/Cargo.lock b/Cargo.lock index 89f4ab1..9f60cfe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -273,11 +273,11 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "mingling" -version = "0.1.8" +version = "0.1.9" dependencies = [ "mingling", - "mingling_core 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mingling_macros 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling_core", + "mingling_macros", "serde", "size", "tokio", @@ -285,7 +285,7 @@ dependencies = [ [[package]] name = "mingling-cli" -version = "0.1.8" +version = "0.1.9" dependencies = [ "colored", "dirs", @@ -298,25 +298,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.1.8" -dependencies = [ - "env_logger", - "just_fmt", - "just_template", - "log", - "once_cell", - "ron", - "serde", - "serde_json", - "serde_yaml", - "toml", -] - -[[package]] -name = "mingling_core" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0df6a42e46dade5788072687c887e15a980d1d16ab5dc2a98c65d47cf6a82993" +version = "0.1.9" dependencies = [ "env_logger", "just_fmt", @@ -332,20 +314,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.1.8" -dependencies = [ - "just_fmt", - "once_cell", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "mingling_macros" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae2140e7f48e6e73ebaa3bea51eeb89e6caf52d6d48c47b1337a00fa1912ea07" +version = "0.1.9" dependencies = [ "just_fmt", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index de023e2..df49606 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ log = "0.4" env_logger = "0.11" [workspace.package] -version = "0.1.8" +version = "0.1.9" edition = "2024" license = "MIT OR Apache-2.0" repository = "https://github.com/catilgrass/mingling" diff --git a/README.md b/README.md index 749c597..fca134d 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Otherwise, add `Mingling` to your `Cargo.toml`: ```toml # From crates.io -mingling = "0.1.8" +mingling = "0.1.9" # From GitHub mingling = { git = "https://github.com/catilgrass/mingling", branch = "main" } diff --git a/docs/_zh_CN/pages/1-creating-your-first-program.md b/docs/_zh_CN/pages/1-creating-your-first-program.md index efb9997..851eaa6 100644 --- a/docs/_zh_CN/pages/1-creating-your-first-program.md +++ b/docs/_zh_CN/pages/1-creating-your-first-program.md @@ -25,7 +25,7 @@ ```toml [dependencies] -mingling = "0.1.8" +mingling = "0.1.9" # 如果您要尝鲜,可以试试 Github 上托管的版本 mingling = { git = "https://github.com/catilgrass/mingling", branch = "main" } diff --git a/docs/pages/1-creating-your-first-program.md b/docs/pages/1-creating-your-first-program.md index 56b7b90..aaf3171 100644 --- a/docs/pages/1-creating-your-first-program.md +++ b/docs/pages/1-creating-your-first-program.md @@ -25,7 +25,7 @@ ```toml [dependencies] -mingling = "0.1.8" +mingling = "0.1.9" # If you want the latest, try the version hosted on Github mingling = { git = "https://github.com/catilgrass/mingling", branch = "main" } diff --git a/docs/res/guide.txt b/docs/res/guide.txt index cba666e..b498c6b 100644 --- a/docs/res/guide.txt +++ b/docs/res/guide.txt @@ -5,5 +5,5 @@ │ > cargo add mingling │ │ │ │ Or add this to your Cargo.toml │ - │ > mingling = "0.1.8" │ + │ > mingling = "0.1.9" │ └────────────────────────────────────┘ diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml index 6322e79..da85eaf 100644 --- a/mingling/Cargo.toml +++ b/mingling/Cargo.toml @@ -65,7 +65,7 @@ toml_serde_fmt = ["mingling_core/toml_serde_fmt"] ron_serde_fmt = ["mingling_core/ron_serde_fmt"] [dependencies] -mingling_core = { version = "0.1.8", default-features = false } -mingling_macros = { version = "0.1.8", default-features = false } +mingling_core = { path = "../mingling_core", default-features = false } +mingling_macros = { path = "../mingling_macros", default-features = false } serde = { workspace = true, optional = true } size = { version = "0.5", optional = true } diff --git a/mingling/README.md b/mingling/README.md index 749c597..fca134d 100644 --- a/mingling/README.md +++ b/mingling/README.md @@ -62,7 +62,7 @@ Otherwise, add `Mingling` to your `Cargo.toml`: ```toml # From crates.io -mingling = "0.1.8" +mingling = "0.1.9" # From GitHub mingling = { git = "https://github.com/catilgrass/mingling", branch = "main" } diff --git a/mling/res/version.txt b/mling/res/version.txt index bc45b95..4b6c716 100644 --- a/mling/res/version.txt +++ b/mling/res/version.txt @@ -7,7 +7,7 @@ ███▒▒█████▒▒███ │ > cargo add mingling │ █████▒ ████ ▒█████ │ ^^^^^^^^ │ ██████▒▒ █▒ ██ ▒█ ▒███████ │ Or add this to your Cargo.toml │ - █████▒▒▒▒█▒ █▒ ██ ▒█ ▒██▒▒▒▒█████ │ > mingling = "0.1.8" │ + █████▒▒▒▒█▒ █▒ ██ ▒█ ▒██▒▒▒▒█████ │ > mingling = "0.1.9" │ ▒▒▒▒▒ ██ ██ ▒██ ▒▒▒▒▒ └────────────────────────────────────┘ ▒▒███████████████ ┌────────────────────────────────────┐ ▒▒▒███▒▒▒▒▒▒▒▒ │ INSTALL TOOLS: │ -- cgit