aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-09 01:53:46 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-09 01:53:46 +0800
commit6536ab29f7c0ca05cf734f116bef6974bab326c7 (patch)
treeafccc9b8fe3c1c6e755e06662c866ad7936d1e2f
parent815cc96a09b86eb890d6fa36d9afe8ed18afb867 (diff)
chore: bump version to 0.4.0
-rw-r--r--Cargo.lock10
-rw-r--r--Cargo.toml2
-rw-r--r--README.md4
-rw-r--r--docs/_zh_CN/pages/1-getting-started.md4
-rw-r--r--docs/pages/1-getting-started.md4
-rw-r--r--docs/res/guide.txt2
-rw-r--r--mingling_cli/Cargo.lock10
-rw-r--r--mingling_cli/Cargo.toml2
-rw-r--r--mingling_pathf/test/Cargo.lock2
9 files changed, 20 insertions, 20 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8ab849c..7ba5c5d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -270,7 +270,7 @@ dependencies = [
[[package]]
name = "mingling"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"arg-picker",
"mingling",
@@ -283,11 +283,11 @@ dependencies = [
[[package]]
name = "mingling-workspace"
-version = "0.3.0"
+version = "0.4.0"
[[package]]
name = "mingling_core"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"env_logger",
"just_fmt 0.2.0",
@@ -304,7 +304,7 @@ dependencies = [
[[package]]
name = "mingling_macros"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"proc-macro2",
@@ -314,7 +314,7 @@ dependencies = [
[[package]]
name = "mingling_pathf"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"proc-macro2",
diff --git a/Cargo.toml b/Cargo.toml
index 0b3f18d..916f6f5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -64,7 +64,7 @@ log = "0.4.33"
env_logger = "0.11.11"
[workspace.package]
-version = "0.3.0"
+version = "0.4.0"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mingling-rs/mingling"
diff --git a/README.md b/README.md
index 3499d0d..830e13c 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@
💡 Its name comes from the Chinese pinyin **"Mìng Lìng"**, which means **"command"**.
-## WARNING
+## ⚠WARNING
Mingling is currently usable at a basic level, but it is still under active development, so many APIs are not yet mature. Any changes to the public API will be documented in detail in the [Changelog](https://github.com/mingling-rs/mingling/blob/main/CHANGELOG.md).
@@ -99,7 +99,7 @@ Add Mingling to your `Cargo.toml`:
```toml
[dependencies.mingling]
-version = "0.3.0"
+version = "0.4.0"
features = []
```
diff --git a/docs/_zh_CN/pages/1-getting-started.md b/docs/_zh_CN/pages/1-getting-started.md
index 2fca931..6aa6229 100644
--- a/docs/_zh_CN/pages/1-getting-started.md
+++ b/docs/_zh_CN/pages/1-getting-started.md
@@ -13,7 +13,7 @@ cd my-cli
```toml
[dependencies.mingling]
-version = "0.3.0"
+version = "0.4.0"
features = []
```
@@ -25,7 +25,7 @@ features = []
```toml
[dependencies.mingling]
-version = "0.3.0"
+version = "0.4.0"
features = [
"parser",
"comp",
diff --git a/docs/pages/1-getting-started.md b/docs/pages/1-getting-started.md
index 8c81100..443ed74 100644
--- a/docs/pages/1-getting-started.md
+++ b/docs/pages/1-getting-started.md
@@ -13,7 +13,7 @@ Add the following to `Cargo.toml`:
```toml
[dependencies.mingling]
-version = "0.3.0"
+version = "0.4.0"
features = []
```
@@ -25,7 +25,7 @@ Some features **directly affect the entire lifecycle behavior**, so you need to
```toml
[dependencies.mingling]
-version = "0.3.0"
+version = "0.4.0"
features = [
"parser",
"comp",
diff --git a/docs/res/guide.txt b/docs/res/guide.txt
index 657c7ca..74f9c69 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.3.0" │
+ │ > mingling = "0.4.0" │
└────────────────────────────────────┘
diff --git a/mingling_cli/Cargo.lock b/mingling_cli/Cargo.lock
index 6d390e2..6a97a01 100644
--- a/mingling_cli/Cargo.lock
+++ b/mingling_cli/Cargo.lock
@@ -272,7 +272,7 @@ dependencies = [
[[package]]
name = "mingling"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"arg-picker",
"mingling_core",
@@ -281,7 +281,7 @@ dependencies = [
[[package]]
name = "mingling-cli"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"annotate-snippets",
"cargo_metadata",
@@ -298,7 +298,7 @@ dependencies = [
[[package]]
name = "mingling_core"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"might_be_async",
@@ -307,7 +307,7 @@ dependencies = [
[[package]]
name = "mingling_macros"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"proc-macro2",
@@ -317,7 +317,7 @@ dependencies = [
[[package]]
name = "mingling_pathf"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"proc-macro2",
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml
index 9ee8fa0..5aa554c 100644
--- a/mingling_cli/Cargo.toml
+++ b/mingling_cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mingling-cli"
-version = "0.3.0"
+version = "0.4.0"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mingling-rs/mingling/tree/main/mingling_cli"
diff --git a/mingling_pathf/test/Cargo.lock b/mingling_pathf/test/Cargo.lock
index 1260662..e7de689 100644
--- a/mingling_pathf/test/Cargo.lock
+++ b/mingling_pathf/test/Cargo.lock
@@ -16,7 +16,7 @@ checksum = "6170dccbc3ea15dfb7f2da964097f814aba1dd8f746d4ffc56f33245c38e6d96"
[[package]]
name = "mingling_pathf"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"just_fmt 0.2.0",
"proc-macro2",