Skip to content

Commit a93cd0b

Browse files
authored
publish new versions
1 parent 86bae64 commit a93cd0b

File tree

14 files changed

+42
-33
lines changed

14 files changed

+42
-33
lines changed

.changes/fix-opener-open-path-error.md

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

.changes/updater-builder-header.md

Lines changed: 0 additions & 7 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.9]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.8]
411

512
### Dependencies

examples/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.8",
4+
"version": "2.0.9",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -19,7 +19,7 @@
1919
"@tauri-apps/plugin-fs": "2.2.0",
2020
"@tauri-apps/plugin-geolocation": "2.2.0",
2121
"@tauri-apps/plugin-global-shortcut": "2.2.0",
22-
"@tauri-apps/plugin-opener": "2.2.2",
22+
"@tauri-apps/plugin-opener": "2.2.3",
2323
"@tauri-apps/plugin-haptics": "2.2.0",
2424
"@tauri-apps/plugin-http": "2.2.0",
2525
"@tauri-apps/plugin-nfc": "2.2.0",
@@ -28,7 +28,7 @@
2828
"@tauri-apps/plugin-process": "2.2.0",
2929
"@tauri-apps/plugin-shell": "2.2.0",
3030
"@tauri-apps/plugin-store": "2.2.0",
31-
"@tauri-apps/plugin-updater": "2.3.0",
31+
"@tauri-apps/plugin-updater": "2.3.1",
3232
"@zerodevx/svelte-json-view": "1.0.11"
3333
},
3434
"devDependencies": {

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.12]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.11]
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.11"
4+
version = "2.0.12"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -33,7 +33,7 @@ tauri-plugin-notification = { path = "../../../plugins/notification", version =
3333
] }
3434
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.0" }
3535
tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.0" }
36-
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.2" }
36+
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.3" }
3737
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.0" }
3838
tauri-plugin-store = { path = "../../../plugins/store", version = "2.2.0" }
3939

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

5959
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]

plugins/opener/CHANGELOG.md

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

3+
## \[2.2.3]
4+
5+
- [`a9ac1e3c`](https://github.com/tauri-apps/plugins-workspace/commit/a9ac1e3c939cec4338a9422ef02323c1d4dde6cd) ([#2253](https://github.com/tauri-apps/plugins-workspace/pull/2253) by [@betamos](https://github.com/tauri-apps/plugins-workspace/../../betamos)) Return an error in `open_path` if the file does not exist when opening with default application.
6+
37
## \[2.2.2]
48

59
- [`ee0f65de`](https://github.com/tauri-apps/plugins-workspace/commit/ee0f65de5c645c244c5f0b638e0e0aab687cb9bf) ([#2207](https://github.com/tauri-apps/plugins-workspace/pull/2207) by [@universalappfactory](https://github.com/tauri-apps/plugins-workspace/../../universalappfactory)) Fixed OpenerPlugin packagename for android

plugins/opener/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-opener"
3-
version = "2.2.2"
3+
version = "2.2.3"
44
description = "Open files and URLs using their default application."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/opener/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-opener",
3-
"version": "2.2.2",
3+
"version": "2.2.3",
44
"description": "Open files and URLs using their default application.",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

0 commit comments

Comments
 (0)