Skip to content

Commit 22bb0e5

Browse files
publish new versions (#1551)
Co-authored-by: FabianLars <[email protected]>
1 parent 37cb9a6 commit 22bb0e5

File tree

9 files changed

+30
-8
lines changed

9 files changed

+30
-8
lines changed

.changes/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
".changes/fix-fs-watcher-basedir.md",
3737
".changes/fix-http-default-features.md",
3838
".changes/fix-http-scope-url-match.md",
39+
".changes/fix-notification-access-violation.md",
3940
".changes/fix-shutdown-timing.md",
4041
".changes/fix-updater-cleanup.md",
4142
".changes/fix-updater-default-features.md",
@@ -61,6 +62,7 @@
6162
".changes/http-user-agent.md",
6263
".changes/impl-ext-for-webview-windows.md",
6364
".changes/msrv-1.75.md",
65+
".changes/named-tempfile-updater-windows.md",
6466
".changes/notifcation-permission-commands.md",
6567
".changes/notification-fix-dev-check.md",
6668
".changes/notification-fix-dev-name.md",
@@ -81,6 +83,7 @@
8183
".changes/single-instance.macos.md",
8284
".changes/sql-column-order.md",
8385
".changes/sql-public-db-instances.md",
86+
".changes/sql-update-sqlx-0-8.md",
8487
".changes/target-sdk-34.md",
8588
".changes/tauri-beta-14-dependencies.md",
8689
".changes/tauri-beta-14.md",

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.0-beta.14]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-beta.13]
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.0-beta.13"
4+
version = "2.0.0-beta.14"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -24,7 +24,7 @@ tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.11", fea
2424
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.6" }
2525
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.11" }
2626
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.12" }
27-
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.10", features = [ "windows7-compat" ] }
27+
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.11", features = [ "windows7-compat" ] }
2828
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.8" }
2929
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.8" }
3030
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.9" }
@@ -43,7 +43,7 @@ tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.9"
4343
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
4444
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-beta.8" }
4545
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-beta.8" }
46-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.10" }
46+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.11" }
4747

4848
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
4949
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-beta.9" }

plugins/notification/CHANGELOG.md

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

3+
## \[2.0.0-beta.11]
4+
5+
- [`725ff429`](https://github.com/tauri-apps/plugins-workspace/commit/725ff4295e56df9c30c099813bd64b96fe61b945) ([#1556](https://github.com/tauri-apps/plugins-workspace/pull/1556) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixed an issue that caused the `notification` plugin's initialization script to cause the WebView on Windows to throw a `STATUS_ACCESS_VIOLATION` error on remote websites.
6+
37
## \[2.0.0-beta.7]
48

59
- [`22a17980`](https://github.com/tauri-apps/plugins-workspace/commit/22a17980ff4f6f8c40adb1b8f4ffc6dae2fe7e30) ([#1537](https://github.com/tauri-apps/plugins-workspace/pull/1537) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri beta.24.
@@ -100,4 +104,3 @@
100104
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
101105
!
102106
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
103-

plugins/notification/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-notification"
3-
version = "2.0.0-beta.10"
3+
version = "2.0.0-beta.11"
44
description = "Send desktop and mobile notifications on your Tauri application."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/sql/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.0.0-beta.10]
4+
5+
- [`37cb9a66`](https://github.com/tauri-apps/plugins-workspace/commit/37cb9a6681b948908cd9443340f6b23401607df7) ([#1575](https://github.com/tauri-apps/plugins-workspace/pull/1575) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) Update sqlx to 0.8 - Check out their changelog for behavior changes: https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md#080---2024-07-22
6+
37
## \[2.0.0-beta.7]
48

59
- [`22a17980`](https://github.com/tauri-apps/plugins-workspace/commit/22a17980ff4f6f8c40adb1b8f4ffc6dae2fe7e30) ([#1537](https://github.com/tauri-apps/plugins-workspace/pull/1537) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri beta.24.

plugins/sql/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-sql"
3-
version = "2.0.0-beta.9"
3+
version = "2.0.0-beta.10"
44
description = "Interface with SQL databases."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/updater/CHANGELOG.md

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

3+
## \[2.0.0-beta.11]
4+
5+
- [`f83b9e98`](https://github.com/tauri-apps/plugins-workspace/commit/f83b9e9813843df19b03b6af1018d848111b2a62) ([#1544](https://github.com/tauri-apps/plugins-workspace/pull/1544) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) On Windows, use a named tempfile with `<app name>-<version>-installer.exe` (or `.msi`) for v2 updater
6+
7+
**Breaking Change**: `UpdaterBuilder::new` now takes one more argument `app_name: String`
8+
39
## \[2.0.0-beta.7]
410

511
- [`22a17980`](https://github.com/tauri-apps/plugins-workspace/commit/22a17980ff4f6f8c40adb1b8f4ffc6dae2fe7e30) ([#1537](https://github.com/tauri-apps/plugins-workspace/pull/1537) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri beta.24.
@@ -144,4 +150,3 @@
144150
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
145151
92fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
146152
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
147-

plugins/updater/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-updater"
3-
version = "2.0.0-beta.10"
3+
version = "2.0.0-beta.11"
44
description = "In-app updates for Tauri applications."
55
edition = { workspace = true }
66
authors = { workspace = true }

0 commit comments

Comments
 (0)