diff --git a/.changes/pre.json b/.changes/pre.json index 8c4587b97..78f96ee92 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -1,6 +1,8 @@ { "tag": "alpha", "changes": [ - ".changes/3.0-alpha.md" + ".changes/3.0-alpha.md", + ".changes/api-bump.md", + ".changes/tauri-bump-alpha.2.md" ] } diff --git a/examples/api/CHANGELOG.md b/examples/api/CHANGELOG.md index e590f6b96..10deb85ef 100644 --- a/examples/api/CHANGELOG.md +++ b/examples/api/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [2.0.44-alpha.1] + +### Dependencies + +- Upgraded to `barcode-scanner-js@3.0.0-alpha.1` +- Upgraded to `biometric-js@3.0.0-alpha.1` +- Upgraded to `cli-js@3.0.0-alpha.1` +- Upgraded to `clipboard-manager-js@3.0.0-alpha.1` +- Upgraded to `dialog-js@3.0.0-alpha.1` +- Upgraded to `fs-js@3.0.0-alpha.1` +- Upgraded to `global-shortcut-js@3.0.0-alpha.1` +- Upgraded to `http-js@3.0.0-alpha.1` +- Upgraded to `log-js@3.0.0-alpha.1` +- Upgraded to `nfc-js@3.0.0-alpha.1` +- Upgraded to `notification-js@3.0.0-alpha.1` +- Upgraded to `opener-js@3.0.0-alpha.1` +- Upgraded to `os-js@3.0.0-alpha.1` +- Upgraded to `process-js@3.0.0-alpha.1` +- Upgraded to `shell-js@3.0.0-alpha.1` +- Upgraded to `store-js@3.0.0-alpha.1` +- Upgraded to `updater-js@3.0.0-alpha.1` + ## [2.0.44-alpha.0] ### Dependencies diff --git a/examples/api/package.json b/examples/api/package.json index f98ee6f44..4605ba17e 100644 --- a/examples/api/package.json +++ b/examples/api/package.json @@ -1,7 +1,7 @@ { "name": "api", "private": true, - "version": "2.0.44-alpha.0", + "version": "2.0.44-alpha.1", "type": "module", "scripts": { "dev": "vite --clearScreen false", diff --git a/examples/api/src-tauri/CHANGELOG.md b/examples/api/src-tauri/CHANGELOG.md index 64778a738..1a49b7f01 100644 --- a/examples/api/src-tauri/CHANGELOG.md +++ b/examples/api/src-tauri/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [3.0.0-alpha.1] + +### Dependencies + +- Upgraded to `barcode-scanner@3.0.0-alpha.1` +- Upgraded to `biometric@3.0.0-alpha.1` +- Upgraded to `cli@3.0.0-alpha.1` +- Upgraded to `clipboard-manager@3.0.0-alpha.1` +- Upgraded to `dialog@3.0.0-alpha.1` +- Upgraded to `fs@3.0.0-alpha.1` +- Upgraded to `global-shortcut@3.0.0-alpha.1` +- Upgraded to `http@3.0.0-alpha.1` +- Upgraded to `log@3.0.0-alpha.1` +- Upgraded to `nfc@3.0.0-alpha.1` +- Upgraded to `notification@3.0.0-alpha.1` +- Upgraded to `opener@3.0.0-alpha.1` +- Upgraded to `os@3.0.0-alpha.1` +- Upgraded to `process@3.0.0-alpha.1` +- Upgraded to `shell@3.0.0-alpha.1` +- Upgraded to `store@3.0.0-alpha.1` +- Upgraded to `updater@3.0.0-alpha.1` +- Upgraded to `upload@3.0.0-alpha.1` +- Upgraded to `window-state@3.0.0-alpha.1` +- Upgraded to `haptics@3.0.0-alpha.1` +- Upgraded to `geolocation@3.0.0-alpha.1` + ## [3.0.0-alpha.0] ### Dependencies diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index d778603bd..6cecb51c9 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "api" publish = false -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "An example Tauri Application showcasing the api" edition = "2021" rust-version = { workspace = true } @@ -20,28 +20,28 @@ serde = { workspace = true } tiny_http = "0.12" time = "0.3" log = { workspace = true } -tauri-plugin-log = { path = "../../../plugins/log", version = "3.0.0-alpha.0" } -tauri-plugin-fs = { path = "../../../plugins/fs", version = "3.0.0-alpha.0", features = [ +tauri-plugin-log = { path = "../../../plugins/log", version = "3.0.0-alpha.1" } +tauri-plugin-fs = { path = "../../../plugins/fs", version = "3.0.0-alpha.1", features = [ "watch", ] } -tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "3.0.0-alpha.0" } +tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "3.0.0-alpha.1" } # The dialog backend is chosen by the runtime features below: the plugin's # default `gtk3` backend links GTK 3, which cannot share a process with the GTK 4 # application the CEF runtime is on Linux. -tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "3.0.0-alpha.0", default-features = false } +tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "3.0.0-alpha.1", default-features = false } tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart", "cookies", -], version = "3.0.0-alpha.0" } -tauri-plugin-notification = { path = "../../../plugins/notification", version = "3.0.0-alpha.0", features = [ +], version = "3.0.0-alpha.1" } +tauri-plugin-notification = { path = "../../../plugins/notification", version = "3.0.0-alpha.1", features = [ "windows7-compat", ] } -tauri-plugin-os = { path = "../../../plugins/os", version = "3.0.0-alpha.0" } -tauri-plugin-process = { path = "../../../plugins/process", version = "3.0.0-alpha.0" } -tauri-plugin-opener = { path = "../../../plugins/opener", version = "3.0.0-alpha.0" } -tauri-plugin-shell = { path = "../../../plugins/shell", version = "3.0.0-alpha.0" } -tauri-plugin-store = { path = "../../../plugins/store", version = "3.0.0-alpha.0" } -tauri-plugin-upload = { path = "../../../plugins/upload", version = "3.0.0-alpha.0" } +tauri-plugin-os = { path = "../../../plugins/os", version = "3.0.0-alpha.1" } +tauri-plugin-process = { path = "../../../plugins/process", version = "3.0.0-alpha.1" } +tauri-plugin-opener = { path = "../../../plugins/opener", version = "3.0.0-alpha.1" } +tauri-plugin-shell = { path = "../../../plugins/shell", version = "3.0.0-alpha.1" } +tauri-plugin-store = { path = "../../../plugins/store", version = "3.0.0-alpha.1" } +tauri-plugin-upload = { path = "../../../plugins/upload", version = "3.0.0-alpha.1" } [dependencies.tauri] workspace = true @@ -69,17 +69,17 @@ optional = true features = ["macos-private-api"] [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] -tauri-plugin-cli = { path = "../../../plugins/cli", version = "3.0.0-alpha.0" } -tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "3.0.0-alpha.0" } -tauri-plugin-updater = { path = "../../../plugins/updater", version = "3.0.0-alpha.0" } -tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "3.0.0-alpha.0" } +tauri-plugin-cli = { path = "../../../plugins/cli", version = "3.0.0-alpha.1" } +tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "3.0.0-alpha.1" } +tauri-plugin-updater = { path = "../../../plugins/updater", version = "3.0.0-alpha.1" } +tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "3.0.0-alpha.1" } [target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies] -tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "3.0.0-alpha.0" } -tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "3.0.0-alpha.0" } -tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "3.0.0-alpha.0" } -tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "3.0.0-alpha.0" } -tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "3.0.0-alpha.0" } +tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "3.0.0-alpha.1" } +tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "3.0.0-alpha.1" } +tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "3.0.0-alpha.1" } +tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "3.0.0-alpha.1" } +tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "3.0.0-alpha.1" } [features] default = ["wry"] diff --git a/plugins/autostart/CHANGELOG.md b/plugins/autostart/CHANGELOG.md index 38dc99986..704f2ba2e 100644 --- a/plugins/autostart/CHANGELOG.md +++ b/plugins/autostart/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/autostart/Cargo.toml b/plugins/autostart/Cargo.toml index c4ce7ab82..4f7553bc9 100644 --- a/plugins/autostart/Cargo.toml +++ b/plugins/autostart/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-autostart" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Automatically launch your application at startup." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/autostart/package.json b/plugins/autostart/package.json index 35e213b05..0f63dab5f 100644 --- a/plugins/autostart/package.json +++ b/plugins/autostart/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-autostart", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/barcode-scanner/CHANGELOG.md b/plugins/barcode-scanner/CHANGELOG.md index 731106c11..11adc281f 100644 --- a/plugins/barcode-scanner/CHANGELOG.md +++ b/plugins/barcode-scanner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/barcode-scanner/Cargo.toml b/plugins/barcode-scanner/Cargo.toml index 42b5e1976..2b149af5c 100644 --- a/plugins/barcode-scanner/Cargo.toml +++ b/plugins/barcode-scanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-barcode-scanner" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS" edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/barcode-scanner/package.json b/plugins/barcode-scanner/package.json index f53800cf2..24c0054d6 100644 --- a/plugins/barcode-scanner/package.json +++ b/plugins/barcode-scanner/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-barcode-scanner", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/biometric/CHANGELOG.md b/plugins/biometric/CHANGELOG.md index f891f2b53..ba765800e 100644 --- a/plugins/biometric/CHANGELOG.md +++ b/plugins/biometric/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/biometric/Cargo.toml b/plugins/biometric/Cargo.toml index 8efa44635..15bbb62f3 100644 --- a/plugins/biometric/Cargo.toml +++ b/plugins/biometric/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-biometric" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Prompt the user for biometric authentication on Android and iOS." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/biometric/package.json b/plugins/biometric/package.json index 29635e9d6..fea9775dc 100644 --- a/plugins/biometric/package.json +++ b/plugins/biometric/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-biometric", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/cli/CHANGELOG.md b/plugins/cli/CHANGELOG.md index e58e323cb..d05504c4b 100644 --- a/plugins/cli/CHANGELOG.md +++ b/plugins/cli/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/cli/Cargo.toml b/plugins/cli/Cargo.toml index 987137cc6..f896698e0 100644 --- a/plugins/cli/Cargo.toml +++ b/plugins/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-cli" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Parse arguments from your Tauri application's command line interface." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/cli/package.json b/plugins/cli/package.json index 61bcf2cfd..1aef7e82b 100644 --- a/plugins/cli/package.json +++ b/plugins/cli/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-cli", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/clipboard-manager/CHANGELOG.md b/plugins/clipboard-manager/CHANGELOG.md index 443924a11..c5522f39e 100644 --- a/plugins/clipboard-manager/CHANGELOG.md +++ b/plugins/clipboard-manager/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/clipboard-manager/Cargo.toml b/plugins/clipboard-manager/Cargo.toml index 5191261f1..fd6f90c33 100644 --- a/plugins/clipboard-manager/Cargo.toml +++ b/plugins/clipboard-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-clipboard-manager" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Read and write to the system clipboard." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/clipboard-manager/package.json b/plugins/clipboard-manager/package.json index 61edaf10f..90319efcd 100644 --- a/plugins/clipboard-manager/package.json +++ b/plugins/clipboard-manager/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-clipboard-manager", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/deep-link/CHANGELOG.md b/plugins/deep-link/CHANGELOG.md index 62975cfa7..45926fbfc 100644 --- a/plugins/deep-link/CHANGELOG.md +++ b/plugins/deep-link/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/deep-link/Cargo.toml b/plugins/deep-link/Cargo.toml index 3f5443fe7..296d8d317 100644 --- a/plugins/deep-link/Cargo.toml +++ b/plugins/deep-link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-deep-link" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Set your Tauri application as the default handler for an URL" authors = { workspace = true } license = { workspace = true } diff --git a/plugins/deep-link/examples/app/CHANGELOG.md b/plugins/deep-link/examples/app/CHANGELOG.md index abb2178ae..63ec2198a 100644 --- a/plugins/deep-link/examples/app/CHANGELOG.md +++ b/plugins/deep-link/examples/app/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2.2.14-alpha.1] + +### Dependencies + +- Upgraded to `deep-link-js@3.0.0-alpha.1` + ## [2.2.14-alpha.0] ### Dependencies diff --git a/plugins/deep-link/examples/app/package.json b/plugins/deep-link/examples/app/package.json index a2c7bf336..86eb9ffe4 100644 --- a/plugins/deep-link/examples/app/package.json +++ b/plugins/deep-link/examples/app/package.json @@ -1,7 +1,7 @@ { "name": "deep-link-example", "private": true, - "version": "2.2.14-alpha.0", + "version": "2.2.14-alpha.1", "type": "module", "scripts": { "dev": "vite", diff --git a/plugins/deep-link/package.json b/plugins/deep-link/package.json index bbfd891a2..e692fd2be 100644 --- a/plugins/deep-link/package.json +++ b/plugins/deep-link/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-deep-link", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Set your Tauri application as the default handler for an URL", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/dialog/CHANGELOG.md b/plugins/dialog/CHANGELOG.md index ca1fe36ee..73031ce29 100644 --- a/plugins/dialog/CHANGELOG.md +++ b/plugins/dialog/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + +### Dependencies + +- Upgraded to `fs-js@3.0.0-alpha.1` + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index e1d21fac2..c15d28015 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-dialog" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } @@ -43,7 +43,7 @@ tauri = { workspace = true } log = { workspace = true } thiserror = { workspace = true } url = { workspace = true } -tauri-plugin-fs = { path = "../fs", version = "3.0.0-alpha.0" } +tauri-plugin-fs = { path = "../fs", version = "3.0.0-alpha.1" } [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] diff --git a/plugins/dialog/package.json b/plugins/dialog/package.json index e582ec189..0184a8046 100644 --- a/plugins/dialog/package.json +++ b/plugins/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-dialog", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/fs/CHANGELOG.md b/plugins/fs/CHANGELOG.md index ada22ce4d..7a0e76d3f 100644 --- a/plugins/fs/CHANGELOG.md +++ b/plugins/fs/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/fs/Cargo.toml b/plugins/fs/Cargo.toml index 4da1f5cb6..79b92330b 100644 --- a/plugins/fs/Cargo.toml +++ b/plugins/fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-fs" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Access the file system." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/fs/package.json b/plugins/fs/package.json index aa78f999c..c2fe6d5b6 100644 --- a/plugins/fs/package.json +++ b/plugins/fs/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-fs", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Access the file system.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/geolocation/CHANGELOG.md b/plugins/geolocation/CHANGELOG.md index 1c9d1645b..5aee1231b 100644 --- a/plugins/geolocation/CHANGELOG.md +++ b/plugins/geolocation/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/geolocation/Cargo.toml b/plugins/geolocation/Cargo.toml index 9eb218f8c..c97ad8579 100644 --- a/plugins/geolocation/Cargo.toml +++ b/plugins/geolocation/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tauri-plugin-geolocation" description = "Get and track the device's current position" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/geolocation/package.json b/plugins/geolocation/package.json index 2939760d1..6ae039c71 100644 --- a/plugins/geolocation/package.json +++ b/plugins/geolocation/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-geolocation", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/global-shortcut/CHANGELOG.md b/plugins/global-shortcut/CHANGELOG.md index 7e0dd9e61..f9711c27b 100644 --- a/plugins/global-shortcut/CHANGELOG.md +++ b/plugins/global-shortcut/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/global-shortcut/Cargo.toml b/plugins/global-shortcut/Cargo.toml index 13bf3a9ba..484621bbc 100644 --- a/plugins/global-shortcut/Cargo.toml +++ b/plugins/global-shortcut/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-global-shortcut" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Register global hotkeys listeners on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/global-shortcut/package.json b/plugins/global-shortcut/package.json index 2737a43f3..c7ad82cfd 100644 --- a/plugins/global-shortcut/package.json +++ b/plugins/global-shortcut/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-global-shortcut", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/haptics/CHANGELOG.md b/plugins/haptics/CHANGELOG.md index ffdde0e35..829e7062c 100644 --- a/plugins/haptics/CHANGELOG.md +++ b/plugins/haptics/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/haptics/Cargo.toml b/plugins/haptics/Cargo.toml index 07ba1d704..89106c7bc 100644 --- a/plugins/haptics/Cargo.toml +++ b/plugins/haptics/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tauri-plugin-haptics" description = "Haptic feedback and vibrations on Android and iOS" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/haptics/package.json b/plugins/haptics/package.json index 9e5c05ff1..1de6a72fa 100644 --- a/plugins/haptics/package.json +++ b/plugins/haptics/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-haptics", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/http/CHANGELOG.md b/plugins/http/CHANGELOG.md index 3fa392938..6b6efd473 100644 --- a/plugins/http/CHANGELOG.md +++ b/plugins/http/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + +### Dependencies + +- Upgraded to `fs-js@3.0.0-alpha.1` + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index d2e1a6b05..821bc90d2 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-http" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } @@ -37,7 +37,7 @@ serde_json = { workspace = true } tauri = { workspace = true } thiserror = { workspace = true } tokio = { version = "1", features = ["sync", "macros"] } -tauri-plugin-fs = { path = "../fs", version = "3.0.0-alpha.0" } +tauri-plugin-fs = { path = "../fs", version = "3.0.0-alpha.1" } urlpattern = "0.3" regex = "1" http = "1" diff --git a/plugins/http/package.json b/plugins/http/package.json index 15495d63f..27c85b8e8 100644 --- a/plugins/http/package.json +++ b/plugins/http/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-http", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/localhost/CHANGELOG.md b/plugins/localhost/CHANGELOG.md index f9a275ffa..2d025fb5c 100644 --- a/plugins/localhost/CHANGELOG.md +++ b/plugins/localhost/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to tauri v3.0.0-alpha.2. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/localhost/Cargo.toml b/plugins/localhost/Cargo.toml index c009ba785..d76047bc1 100644 --- a/plugins/localhost/Cargo.toml +++ b/plugins/localhost/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-localhost" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Expose your apps assets through a localhost server instead of the default custom protocol." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/log/CHANGELOG.md b/plugins/log/CHANGELOG.md index 163421fd5..c47988c25 100644 --- a/plugins/log/CHANGELOG.md +++ b/plugins/log/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/log/Cargo.toml b/plugins/log/Cargo.toml index 52adb83b9..c5b375fc9 100644 --- a/plugins/log/Cargo.toml +++ b/plugins/log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-log" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Configurable logging for your Tauri app." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/log/package.json b/plugins/log/package.json index 089d71bb5..bd016a256 100644 --- a/plugins/log/package.json +++ b/plugins/log/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-log", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Configurable logging for your Tauri app.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/nfc/CHANGELOG.md b/plugins/nfc/CHANGELOG.md index 110d98467..ca7f866c9 100644 --- a/plugins/nfc/CHANGELOG.md +++ b/plugins/nfc/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/nfc/Cargo.toml b/plugins/nfc/Cargo.toml index 60b4639b8..251b62606 100644 --- a/plugins/nfc/Cargo.toml +++ b/plugins/nfc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-nfc" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Read and write NFC tags on Android and iOS." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/nfc/package.json b/plugins/nfc/package.json index 0ec142177..fea355b2d 100644 --- a/plugins/nfc/package.json +++ b/plugins/nfc/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-nfc", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/notification/CHANGELOG.md b/plugins/notification/CHANGELOG.md index 803a66940..1a24bc213 100644 --- a/plugins/notification/CHANGELOG.md +++ b/plugins/notification/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 3ba77f109..ce822cd96 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-notification" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Send desktop and mobile notifications on your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/notification/package.json b/plugins/notification/package.json index 360c217ab..640faa1b1 100644 --- a/plugins/notification/package.json +++ b/plugins/notification/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-notification", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/opener/CHANGELOG.md b/plugins/opener/CHANGELOG.md index 60c4e4f29..c9d1ddea3 100644 --- a/plugins/opener/CHANGELOG.md +++ b/plugins/opener/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/opener/Cargo.toml b/plugins/opener/Cargo.toml index c6de20130..b1b45ed4b 100644 --- a/plugins/opener/Cargo.toml +++ b/plugins/opener/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-opener" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Open files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/opener/package.json b/plugins/opener/package.json index 7b79549b0..b224c6205 100644 --- a/plugins/opener/package.json +++ b/plugins/opener/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-opener", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Open files and URLs using their default application.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/os/CHANGELOG.md b/plugins/os/CHANGELOG.md index 376eb26f8..f437da06a 100644 --- a/plugins/os/CHANGELOG.md +++ b/plugins/os/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index 7e4c43027..17cd6b0e6 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-os" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Read information about the operating system." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/os/package.json b/plugins/os/package.json index 81d7f9d50..2a3d2d31c 100644 --- a/plugins/os/package.json +++ b/plugins/os/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-os", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index b4ce578e2..b95c9f7d8 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to tauri v3.0.0-alpha.2. + +### Dependencies + +- Upgraded to `fs@3.0.0-alpha.1` + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index 519fc60a6..cdc473381 100644 --- a/plugins/persisted-scope/Cargo.toml +++ b/plugins/persisted-scope/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-persisted-scope" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Save filesystem and asset scopes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } @@ -24,7 +24,7 @@ log = { workspace = true } thiserror = { workspace = true } aho-corasick = "1" bincode = "1" -tauri-plugin-fs = { path = "../fs", version = "3.0.0-alpha.0" } +tauri-plugin-fs = { path = "../fs", version = "3.0.0-alpha.1" } [features] protocol-asset = ["tauri/protocol-asset"] diff --git a/plugins/positioner/CHANGELOG.md b/plugins/positioner/CHANGELOG.md index b25747c6a..691b73f5c 100644 --- a/plugins/positioner/CHANGELOG.md +++ b/plugins/positioner/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/positioner/Cargo.toml b/plugins/positioner/Cargo.toml index 9a0975f4e..dbb64c7c0 100644 --- a/plugins/positioner/Cargo.toml +++ b/plugins/positioner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-positioner" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Position your windows at well-known locations." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/positioner/package.json b/plugins/positioner/package.json index 52be0bb9e..dca1650aa 100644 --- a/plugins/positioner/package.json +++ b/plugins/positioner/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-positioner", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Position your windows at well-known locations.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/process/CHANGELOG.md b/plugins/process/CHANGELOG.md index a94b4d0e0..d7a98450e 100644 --- a/plugins/process/CHANGELOG.md +++ b/plugins/process/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/process/Cargo.toml b/plugins/process/Cargo.toml index 712e5a850..c191a52f1 100644 --- a/plugins/process/Cargo.toml +++ b/plugins/process/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-process" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Access the current process of your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/process/package.json b/plugins/process/package.json index 782c08758..7747e883a 100644 --- a/plugins/process/package.json +++ b/plugins/process/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-process", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/shell/CHANGELOG.md b/plugins/shell/CHANGELOG.md index 050b1d76d..ee2e1fb1c 100644 --- a/plugins/shell/CHANGELOG.md +++ b/plugins/shell/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/shell/Cargo.toml b/plugins/shell/Cargo.toml index 506492ce2..f6f2b1bc5 100644 --- a/plugins/shell/Cargo.toml +++ b/plugins/shell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-shell" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/shell/package.json b/plugins/shell/package.json index edcaa0cfc..c40a52640 100644 --- a/plugins/shell/package.json +++ b/plugins/shell/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-shell", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/single-instance/CHANGELOG.md b/plugins/single-instance/CHANGELOG.md index 288667d26..aa5f954a4 100644 --- a/plugins/single-instance/CHANGELOG.md +++ b/plugins/single-instance/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to tauri v3.0.0-alpha.2. + +### Dependencies + +- Upgraded to `deep-link@3.0.0-alpha.1` + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/single-instance/Cargo.toml b/plugins/single-instance/Cargo.toml index 7fed02ed3..e7d71f4a1 100644 --- a/plugins/single-instance/Cargo.toml +++ b/plugins/single-instance/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-single-instance" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Ensure a single instance of your tauri app is running." authors = { workspace = true } license = { workspace = true } @@ -22,7 +22,7 @@ serde_json = { workspace = true } tauri = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } -tauri-plugin-deep-link = { path = "../deep-link", version = "3.0.0-alpha.0", optional = true } +tauri-plugin-deep-link = { path = "../deep-link", version = "3.0.0-alpha.1", optional = true } semver = { version = "1", optional = true } tokio = { version = "1", features = ["net"] } diff --git a/plugins/sql/CHANGELOG.md b/plugins/sql/CHANGELOG.md index b1fb4deae..7103aabff 100644 --- a/plugins/sql/CHANGELOG.md +++ b/plugins/sql/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/sql/Cargo.toml b/plugins/sql/Cargo.toml index 2f66e4487..d7efa5c85 100644 --- a/plugins/sql/Cargo.toml +++ b/plugins/sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-sql" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Interface with SQL databases." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/sql/package.json b/plugins/sql/package.json index 71b449513..593ef0ce7 100644 --- a/plugins/sql/package.json +++ b/plugins/sql/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-sql", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Interface with SQL databases", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/store/CHANGELOG.md b/plugins/store/CHANGELOG.md index f6d18d4e5..6f87f43d4 100644 --- a/plugins/store/CHANGELOG.md +++ b/plugins/store/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/store/Cargo.toml b/plugins/store/Cargo.toml index 4816a05ce..e8f4b4b39 100644 --- a/plugins/store/Cargo.toml +++ b/plugins/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-store" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Simple, persistent key-value store." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/store/package.json b/plugins/store/package.json index 461cc13e5..69dfe6cdd 100644 --- a/plugins/store/package.json +++ b/plugins/store/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-store", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Simple, persistent key-value store.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/stronghold/CHANGELOG.md b/plugins/stronghold/CHANGELOG.md index fc1a7ba12..0a42ac028 100644 --- a/plugins/stronghold/CHANGELOG.md +++ b/plugins/stronghold/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/stronghold/Cargo.toml b/plugins/stronghold/Cargo.toml index 8dd691d7e..0a281a2a9 100644 --- a/plugins/stronghold/Cargo.toml +++ b/plugins/stronghold/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-stronghold" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Store secrets and keys using the IOTA Stronghold secret management engine." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/stronghold/package.json b/plugins/stronghold/package.json index 4fa3d0ea7..b225919c8 100644 --- a/plugins/stronghold/package.json +++ b/plugins/stronghold/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-stronghold", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Store secrets and keys using the IOTA Stronghold encrypted database.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/updater/CHANGELOG.md b/plugins/updater/CHANGELOG.md index 2cf518f2c..2a2341261 100644 --- a/plugins/updater/CHANGELOG.md +++ b/plugins/updater/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index 25469b13f..31fade7b6 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-updater" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true } diff --git a/plugins/updater/package.json b/plugins/updater/package.json index 4396e4b32..17b3b3568 100644 --- a/plugins/updater/package.json +++ b/plugins/updater/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-updater", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/upload/CHANGELOG.md b/plugins/upload/CHANGELOG.md index b90915caf..3c4ff5b92 100644 --- a/plugins/upload/CHANGELOG.md +++ b/plugins/upload/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index 34957379b..8ec35cc5d 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-upload" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Upload files from disk to a remote server over HTTP." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/upload/package.json b/plugins/upload/package.json index f918361f2..fc6a7ca1e 100644 --- a/plugins/upload/package.json +++ b/plugins/upload/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-upload", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Upload files from disk to a remote server over HTTP.", "license": "MIT OR Apache-2.0", "authors": [ diff --git a/plugins/websocket/CHANGELOG.md b/plugins/websocket/CHANGELOG.md index 17bc257e1..1a88d03f8 100644 --- a/plugins/websocket/CHANGELOG.md +++ b/plugins/websocket/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/websocket/Cargo.toml b/plugins/websocket/Cargo.toml index 05e632ddb..bbadf4e60 100644 --- a/plugins/websocket/Cargo.toml +++ b/plugins/websocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-websocket" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Expose a WebSocket server to your Tauri frontend." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/websocket/package.json b/plugins/websocket/package.json index 80ed117ed..dd8acbfd7 100644 --- a/plugins/websocket/package.json +++ b/plugins/websocket/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-websocket", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "license": "MIT OR Apache-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" diff --git a/plugins/window-state/CHANGELOG.md b/plugins/window-state/CHANGELOG.md index 6b95dfaf4..56cf8428e 100644 --- a/plugins/window-state/CHANGELOG.md +++ b/plugins/window-state/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0-alpha.1] + +- [`15bf611d`](https://github.com/tauri-apps/plugins-workspace/commit/15bf611d68b15f343c0e8f6834a64d0cf2cc1637) Update to @tauri-apps/api v3.0.0-alpha. + ## [3.0.0-alpha.0] - [`363438b5`](https://github.com/tauri-apps/plugins-workspace/commit/363438b50a09162379d57c7c7bfc132520c1e5d4) Update to tauri 3.0 alpha. diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index ed7b8705e..906ec532e 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-window-state" -version = "3.0.0-alpha.0" +version = "3.0.0-alpha.1" description = "Save window positions and sizes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/window-state/package.json b/plugins/window-state/package.json index 159bf77d7..12567a491 100644 --- a/plugins/window-state/package.json +++ b/plugins/window-state/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-window-state", - "version": "3.0.0-alpha.0", + "version": "3.0.0-alpha.1", "description": "Save window positions and sizes and restore them when the app is reopened.", "license": "MIT OR Apache-2.0", "authors": [