publish new versions (#1393)

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
pull/1480/head^2 deep-link-js-v2.0.0-beta.7
github-actions[bot] 12 months ago committed by GitHub
parent 7d332ef634
commit f30a3b0501
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,6 +9,7 @@
".changes/clipboard-mobile.md",
".changes/clipboard-refactor.md",
".changes/clipboard-text-command-rename.md",
".changes/crate-notify-rust.md",
".changes/deep-link-desktop.md",
".changes/dialog-can-create-directories.md",
".changes/dialog-linux-freeze.md",
@ -25,6 +26,7 @@
".changes/fix-android-warnings.md",
".changes/fix-authenticator-windows-compile.md",
".changes/fix-autolaunch-macos.md",
".changes/fix-deep-link-is-registered-typo.md",
".changes/fix-deep-link-linux.md",
".changes/fix-default-arg-value.md",
".changes/fix-fs-scope-deadlock.md",
@ -42,6 +44,8 @@
".changes/global-hotkey-event.md",
".changes/global-shortcut-refactor.md",
".changes/http-cookies.md",
".changes/http-origin-duplicated.md",
".changes/http-origin-unsafe.md",
".changes/http-origin.md",
".changes/http-tauri-beta-19.md",
".changes/http-unsafe-headers.md",
@ -64,6 +68,7 @@
".changes/shell-shellexcute.md",
".changes/single-instance.macos.md",
".changes/sql-column-order.md",
".changes/sql-public-db-instances.md",
".changes/target-sdk-34.md",
".changes/tauri-beta-14-dependencies.md",
".changes/tauri-beta-14.md",
@ -75,6 +80,7 @@
".changes/tauri-beta-8.md",
".changes/tauri-beta-9.md",
".changes/updater-download-install-js-binding.md",
".changes/updater-msiexec.md",
".changes/updater-non-zip.md",
".changes/updater-nsis-shortcuts.md",
".changes/updater-zip-no-default-features.md",

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.9]
### Dependencies
- Upgraded to `http-js@2.0.0-beta.6`
## \[2.0.0-beta.8]
### Dependencies

@ -1,7 +1,7 @@
{
"name": "svelte-app",
"private": true,
"version": "2.0.0-beta.8",
"version": "2.0.0-beta.9",
"type": "module",
"scripts": {
"dev": "vite --clearScreen false",
@ -17,7 +17,7 @@
"@tauri-apps/plugin-dialog": "2.0.0-beta.5",
"@tauri-apps/plugin-fs": "2.0.0-beta.5",
"@tauri-apps/plugin-global-shortcut": "2.0.0-beta.5",
"@tauri-apps/plugin-http": "2.0.0-beta.5",
"@tauri-apps/plugin-http": "2.0.0-beta.6",
"@tauri-apps/plugin-nfc": "2.0.0-beta.5",
"@tauri-apps/plugin-notification": "2.0.0-beta.5",
"@tauri-apps/plugin-os": "2.0.0-beta.5",

@ -1,5 +1,13 @@
# Changelog
## \[2.0.0-beta.11]
### Dependencies
- Upgraded to `notification@2.0.0-beta.8`
- Upgraded to `http@2.0.0-beta.10`
- Upgraded to `updater@2.0.0-beta.8`
## \[2.0.0-beta.10]
### Dependencies

@ -1,7 +1,7 @@
[package]
name = "api"
publish = false
version = "2.0.0-beta.10"
version = "2.0.0-beta.11"
description = "An example Tauri Application showcasing the api"
edition = "2021"
rust-version = { workspace = true }
@ -23,8 +23,8 @@ tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.6" }
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.9", features = [ "watch" ] }
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.4" }
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.9" }
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.9" }
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.7", features = [ "windows7-compat" ] }
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.10" }
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.8", features = [ "windows7-compat" ] }
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.6" }
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.6" }
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.7" }
@ -43,7 +43,7 @@ tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.7"
[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 = "2.0.0-beta.6" }
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-beta.6" }
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.7" }
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.8" }
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-beta.7" }

@ -1,5 +1,9 @@
# Changelog
## \[2.0.0-beta.7]
- [`0b008882`](https://github.com/tauri-apps/plugins-workspace/commit/0b0088821e50e33825f7d573b1c826cfeb38dda0) ([#1404](https://github.com/tauri-apps/plugins-workspace/pull/1404) by [@simonhyll](https://github.com/tauri-apps/plugins-workspace/../../simonhyll)) Fixed a typo in the `deep-link` js bindings causing `isRegistered` to not work.
## \[2.0.0-beta.6]
- [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22.

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-beta.7]
### Dependencies
- Upgraded to `deep-link-js@2.0.0-beta.7`
## \[2.0.0-beta.6]
### Dependencies

@ -1,7 +1,7 @@
{
"name": "deep-link-example",
"private": true,
"version": "2.0.0-beta.6",
"version": "2.0.0-beta.7",
"type": "module",
"scripts": {
"dev": "vite",
@ -11,7 +11,7 @@
},
"dependencies": {
"@tauri-apps/api": "2.0.0-beta.13",
"@tauri-apps/plugin-deep-link": "2.0.0-beta.6"
"@tauri-apps/plugin-deep-link": "2.0.0-beta.7"
},
"devDependencies": {
"@tauri-apps/cli": "2.0.0-beta.20",

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-deep-link",
"version": "2.0.0-beta.6",
"version": "2.0.0-beta.7",
"description": "Set your Tauri application as the default handler for an URL",
"license": "MIT or APACHE-2.0",
"authors": [

@ -1,5 +1,9 @@
# Changelog
## \[2.0.0-beta.6]
- [`0f739dbc`](https://github.com/tauri-apps/plugins-workspace/commit/0f739dbc483a1f091977cbe575c3862fd39f8cf1) ([#1392](https://github.com/tauri-apps/plugins-workspace/pull/1392) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Allow setting `Origin` header when `unsafe-headers` feature flag is active.
## \[2.0.0-beta.5]
- [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22.
@ -172,6 +176,23 @@
lpha release!
!
371\)) First v2 alpha release!
lpha release!
lpha release!
!
371\)) First v2 alpha release!
t v2 alpha release!
!
371\)) First v2 alpha release!
ace/pull/371)) First v2 alpha release!
371\)) First v2 alpha release!
!
371\)) First v2 alpha release!
!
371\)) First v2 alpha release!
!
371\)) First v2 alpha release!
lpha release!
!
371\)) First v2 alpha release!
lpha release!
!
371\)) First v2 alpha release!

@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-http"
version = "2.0.0-beta.9"
version = "2.0.0-beta.10"
description = "Access an HTTP client written in Rust."
edition = { workspace = true }
authors = { workspace = true }

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-http",
"version": "2.0.0-beta.5",
"version": "2.0.0-beta.6",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"

@ -1,5 +1,9 @@
# Changelog
## \[2.0.0-beta.8]
- [`3779fb50`](https://github.com/tauri-apps/plugins-workspace/commit/3779fb50634fba4d7e7eb0bfecc2216349b9d64d) ([#1432](https://github.com/tauri-apps/plugins-workspace/pull/1432) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Use notify_rust from crates.io instead of local fork.
## \[2.0.0-beta.5]
- [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22.
@ -82,5 +86,5 @@
workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
ithub.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
!
!
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!

@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-notification"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
description = "Send desktop and mobile notifications on your Tauri application."
edition = { workspace = true }
authors = { workspace = true }

@ -1,5 +1,9 @@
# Changelog
## \[2.0.0-beta.7]
- [`4216c051`](https://github.com/tauri-apps/plugins-workspace/commit/4216c0517fd1dcb29d0162dc2fc15291472a2b00) ([#1381](https://github.com/tauri-apps/plugins-workspace/pull/1381) by [@thewh1teagle](https://github.com/tauri-apps/plugins-workspace/../../thewh1teagle)) Made `DbInstances` public for managing database instances directly from `Rust`.
## \[2.0.0-beta.5]
- [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22.

@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-sql"
version = "2.0.0-beta.6"
version = "2.0.0-beta.7"
description = "Interface with SQL databases."
authors = { workspace = true }
license = { workspace = true }

@ -1,5 +1,9 @@
# Changelog
## \[2.0.0-beta.8]
- [`bf29a72b`](https://github.com/tauri-apps/plugins-workspace/commit/bf29a72baaff15214a21989df23081eee84e3b8b) ([#1454](https://github.com/tauri-apps/plugins-workspace/pull/1454) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Fix regression in updater plugin failing to update using `.msi` installer.
## \[2.0.0-beta.5]
- [`9013854f`](https://github.com/tauri-apps/plugins-workspace/commit/9013854f42a49a230b9dbb9d02774765528a923f)([#1382](https://github.com/tauri-apps/plugins-workspace/pull/1382)) Update to tauri beta.22.

@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-updater"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
description = "In-app updates for Tauri applications."
edition = { workspace = true }
authors = { workspace = true }

@ -82,7 +82,7 @@ importers:
specifier: 2.0.0-beta.5
version: link:../../plugins/global-shortcut
'@tauri-apps/plugin-http':
specifier: 2.0.0-beta.5
specifier: 2.0.0-beta.6
version: link:../../plugins/http
'@tauri-apps/plugin-nfc':
specifier: 2.0.0-beta.5
@ -182,7 +182,7 @@ importers:
specifier: 2.0.0-beta.13
version: 2.0.0-beta.13
'@tauri-apps/plugin-deep-link':
specifier: 2.0.0-beta.6
specifier: 2.0.0-beta.7
version: link:../..
devDependencies:
'@tauri-apps/cli':
@ -2659,14 +2659,13 @@ snapshots:
dependencies:
event-target-shim: 5.0.1
'@covector/apply@0.9.3(mocha@10.4.0)':
'@covector/apply@0.9.3':
dependencies:
'@covector/files': 0.7.2
effection: 2.0.8(mocha@10.4.0)
semver: 7.6.2
transitivePeerDependencies:
- encoding
- mocha
'@covector/assemble@0.11.0':
dependencies:
@ -2683,7 +2682,7 @@ snapshots:
- encoding
- supports-color
'@covector/changelog@0.11.0':
'@covector/changelog@0.11.0(mocha@10.4.0)':
dependencies:
'@covector/files': 0.7.2
effection: 2.0.8(mocha@10.4.0)
@ -2693,6 +2692,7 @@ snapshots:
unified: 9.2.2
transitivePeerDependencies:
- encoding
- mocha
- supports-color
'@covector/command@0.7.1':
@ -3543,9 +3543,9 @@ snapshots:
covector@0.11.0(mocha@10.4.0):
dependencies:
'@covector/apply': 0.9.3(mocha@10.4.0)
'@covector/apply': 0.9.3
'@covector/assemble': 0.11.0
'@covector/changelog': 0.11.0
'@covector/changelog': 0.11.0(mocha@10.4.0)
'@covector/command': 0.7.1
'@covector/files': 0.7.2
effection: 2.0.8(mocha@10.4.0)

Loading…
Cancel
Save