Skip to content

Commit 253ae66

Browse files
publish new versions (#1761)
1 parent 949e2d6 commit 253ae66

File tree

10 files changed

+46
-20
lines changed

10 files changed

+46
-20
lines changed

.changes/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
".changes/barcode-dependencies.md",
66
".changes/barcode-scanner-validate-plist.md",
77
".changes/consolidate-permission-state.md",
8+
".changes/deep-link-get-current-desktop.md",
9+
".changes/deep-link-register-all.md",
810
".changes/dialog-file-response-non-exhaustive.md",
911
".changes/dialog-return-path.md",
1012
".changes/fix-deep-link-config.md",
@@ -31,6 +33,7 @@
3133
".changes/resolve-content-uris.md",
3234
".changes/shell-open-regex-match-string.md",
3335
".changes/shell-regex-match-string.md",
36+
".changes/single-instance-deep-link.md",
3437
".changes/single-instance-windows-sys.0.59.md",
3538
".changes/sql-uuid-type.md",
3639
".changes/store-remove-mobile-plugin.md",

Cargo.lock

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

plugins/deep-link/CHANGELOG.md

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

3+
## \[2.0.0-rc.2]
4+
5+
- [`64a6240f`](https://github.com/tauri-apps/plugins-workspace/commit/64a6240f79fcd52267c8d721b727ae695055d7ff) ([#1759](https://github.com/tauri-apps/plugins-workspace/pull/1759) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Implement `get_current` on Linux and Windows.
6+
37
## \[2.0.0-rc.3]
48

59
- [`4654591d`](https://github.com/tauri-apps/plugins-workspace/commit/4654591d820403d6fa1a007fd55bb0d85947a6cc) ([#1732](https://github.com/tauri-apps/plugins-workspace/pull/1732) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Allow empty configuration values.
@@ -104,3 +108,6 @@
104108
- [`eccd6f9`](https://github.com/tauri-apps/plugins-workspace/commit/eccd6f977af7629255b6f5a5205666c9079a86ed)([#504](https://github.com/tauri-apps/plugins-workspace/pull/504)) Initial release.
105109
commit/eccd6f977af7629255b6f5a5205666c9079a86ed)([#504](https://github.com/tauri-apps/plugins-workspace/pull/504)) Initial release.
106110
ithub.com/tauri-apps/plugins-workspace/pull/504)) Initial release.
111+
](https://github.com/tauri-apps/plugins-workspace/commit/eccd6f977af7629255b6f5a5205666c9079a86ed)([#504](https://github.com/tauri-apps/plugins-workspace/pull/504)) Initial release.
112+
commit/eccd6f977af7629255b6f5a5205666c9079a86ed)([#504](https://github.com/tauri-apps/plugins-workspace/pull/504)) Initial release.
113+
ithub.com/tauri-apps/plugins-workspace/pull/504)) Initial release.

plugins/deep-link/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-deep-link"
3-
version = "2.0.0-rc.3"
3+
version = "2.0.0-rc.4"
44
description = "Set your Tauri application as the default handler for an URL"
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/deep-link/examples/app/CHANGELOG.md

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

3+
## \[2.0.0-rc.1]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-rc.0]
410

511
### Dependencies

plugins/deep-link/examples/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deep-link-example",
33
"private": true,
4-
"version": "2.0.0-rc.0",
4+
"version": "2.0.0-rc.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@tauri-apps/api": "2.0.0-rc.4",
14-
"@tauri-apps/plugin-deep-link": "2.0.0-rc.1"
14+
"@tauri-apps/plugin-deep-link": "2.0.0-rc.2"
1515
},
1616
"devDependencies": {
1717
"@tauri-apps/cli": "2.0.0-rc.12",

plugins/deep-link/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-deep-link",
3-
"version": "2.0.0-rc.1",
3+
"version": "2.0.0-rc.2",
44
"description": "Set your Tauri application as the default handler for an URL",
55
"license": "MIT or APACHE-2.0",
66
"authors": [

plugins/single-instance/CHANGELOG.md

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

3+
## \[2.0.0-rc.2]
4+
5+
- [`64a6240f`](https://github.com/tauri-apps/plugins-workspace/commit/64a6240f79fcd52267c8d721b727ae695055d7ff) ([#1759](https://github.com/tauri-apps/plugins-workspace/pull/1759) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Integrate with the deep link plugin out of the box.
6+
7+
### Dependencies
8+
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.0-rc.1]
412

513
- [`3c52f30e`](https://github.com/tauri-apps/plugins-workspace/commit/3c52f30ea4ec29c51f7021aa7871614d72e43258) ([#1665](https://github.com/tauri-apps/plugins-workspace/pull/1665) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Updated `windows-sys` crate to `0.59`

plugins/single-instance/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-single-instance"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
description = "Ensure a single instance of your tauri app is running."
55
authors = { workspace = true }
66
license = { workspace = true }
@@ -19,7 +19,7 @@ serde_json = { workspace = true }
1919
tauri = { workspace = true }
2020
log = { workspace = true }
2121
thiserror = { workspace = true }
22-
tauri-plugin-deep-link = { path = "../deep-link", version = "2.0.0-rc.3" }
22+
tauri-plugin-deep-link = { path = "../deep-link", version = "2.0.0-rc.4" }
2323
semver = { version = "1", optional = true }
2424

2525
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)