Skip to content

Commit 62b6424

Browse files
lucasfernoggithub-actions[bot]
authored andcommitted
publish new versions
1 parent 9799f0d commit 62b6424

File tree

15 files changed

+40
-33
lines changed

15 files changed

+40
-33
lines changed

.changes/add-cli-matches-from.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/add-global-flag-cli.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changes/fix-log-freeze.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/api/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.25]
4+
5+
### Dependencies
6+
7+
- Upgraded to `cli-js@2.3.0`
8+
- Upgraded to `log-js@2.5.1`
9+
310
## \[2.0.24]
411

512
### Dependencies

examples/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.24",
4+
"version": "2.0.25",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -13,7 +13,7 @@
1313
"@tauri-apps/api": "2.5.0",
1414
"@tauri-apps/plugin-barcode-scanner": "^2.2.1",
1515
"@tauri-apps/plugin-biometric": "^2.2.2",
16-
"@tauri-apps/plugin-cli": "^2.2.1",
16+
"@tauri-apps/plugin-cli": "^2.3.0",
1717
"@tauri-apps/plugin-clipboard-manager": "^2.2.3",
1818
"@tauri-apps/plugin-dialog": "^2.2.2",
1919
"@tauri-apps/plugin-fs": "^2.3.0",

examples/api/src-tauri/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.29]
4+
5+
### Dependencies
6+
7+
- Upgraded to `cli@2.3.0`
8+
- Upgraded to `log@2.5.1`
9+
310
## \[2.0.28]
411

512
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "api"
33
publish = false
4-
version = "2.0.28"
4+
version = "2.0.29"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -20,7 +20,7 @@ serde = { workspace = true }
2020
tiny_http = "0.12"
2121
time = "0.3"
2222
log = { workspace = true }
23-
tauri-plugin-log = { path = "../../../plugins/log", version = "2.5.0" }
23+
tauri-plugin-log = { path = "../../../plugins/log", version = "2.5.1" }
2424
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.3.0", features = [
2525
"watch",
2626
] }
@@ -53,7 +53,7 @@ features = [
5353
]
5454

5555
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
56-
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.2.1" }
56+
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.3.0" }
5757
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.1" }
5858
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.8.1" }
5959
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }

plugins/cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.3.0]
4+
5+
- [`f6e11282`](https://github.com/tauri-apps/plugins-workspace/commit/f6e11282a7f4036dd6d1dbb8f100e777e9e42f11) ([#2787](https://github.com/tauri-apps/plugins-workspace/pull/2787) by [@mikew](https://github.com/tauri-apps/plugins-workspace/../../mikew)) Added `Cli.matches_from(args)`. This can be combined with the `args` passed to the callback of `tauri_plugin_single_instance::init` to parse the command line arguments passed to subsequent instances of the application.
6+
- [`37c2fb41`](https://github.com/tauri-apps/plugins-workspace/commit/37c2fb41201160e85c8dc3ad40f462cd4e17a304) ([#2772](https://github.com/tauri-apps/plugins-workspace/pull/2772) by [@floriskn](https://github.com/tauri-apps/plugins-workspace/../../floriskn)) Added a new `global` boolean flag to the `CliArg` struct to support global CLI arguments. This flag allows arguments like `--verbose` to be marked as global and automatically propagated to all subcommands, enabling consistent availability throughout the CLI.
7+
8+
The new field is optional and defaults to false.
9+
310
## \[2.2.1]
411

512
- [`f634e524`](https://github.com/tauri-apps/plugins-workspace/commit/f634e5248ebe428f8305a59f74c13fc15147fb8e) This is an "empty" release to update the plugins' source files on crates.io and docs.rs. This should fix docs.rs build failures for projects using tauri plugins as dependencies.

plugins/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-cli"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
description = "Parse arguments from your Tauri application's command line interface."
55
edition = { workspace = true }
66
authors = { workspace = true }

0 commit comments

Comments
 (0)