Skip to content

Commit

Permalink
publish new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars authored May 21, 2024
1 parent 200f61c commit ab5e181
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 12 deletions.
6 changes: 6 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
".changes/dialog-can-create-directories.md",
".changes/dialog-linux-freeze.md",
".changes/dialog-main-thread.md",
".changes/dialog-metadata.md",
".changes/dialog-path-return-mismatch.md",
".changes/enhance-fs-scope-type.md",
".changes/enhance-http-scope.md",
Expand All @@ -35,6 +36,9 @@
".changes/global-api-script-refactor.md",
".changes/global-hotkey-event.md",
".changes/global-shortcut-refactor.md",
".changes/http-cookies.md",
".changes/http-origin.md",
".changes/http-tauri-beta-19.md",
".changes/http-unsafe-headers.md",
".changes/http-user-agent.md",
".changes/impl-ext-for-webview-windows.md",
Expand All @@ -51,6 +55,7 @@
".changes/shell-fix-schema-command-property-name.md",
".changes/shell-shellexcute.md",
".changes/single-instance.macos.md",
".changes/sql-column-order.md",
".changes/tauri-beta-14-dependencies.md",
".changes/tauri-beta-14.md",
".changes/tauri-beta-15.md",
Expand All @@ -59,6 +64,7 @@
".changes/tauri-beta-8.md",
".changes/tauri-beta-9.md",
".changes/updater-non-zip.md",
".changes/updater-zip-no-default-features.md",
".changes/upload-returnval.md",
".changes/watcher-debouncer-rename.md",
".changes/window-state-custom-filename.md",
Expand Down
8 changes: 8 additions & 0 deletions examples/api/src-tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[2.0.0-beta.9]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-beta.8]

### Dependencies
Expand Down
8 changes: 4 additions & 4 deletions examples/api/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "api"
publish = false
version = "2.0.0-beta.8"
version = "2.0.0-beta.9"
description = "An example Tauri Application showcasing the api"
edition = "2021"
rust-version = { workspace = true }
Expand All @@ -22,8 +22,8 @@ log = { workspace = true }
tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-beta.4" }
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-beta.7", features = [ "watch" ] }
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.1.0-beta.2" }
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.7" }
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.7" }
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-beta.8" }
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-beta.8" }
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-beta.5", features = [ "windows7-compat" ] }
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-beta.4" }
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-beta.4" }
Expand All @@ -43,7 +43,7 @@ tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-beta.5"
[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.4" }
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-beta.4" }
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.5" }
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-beta.6" }

[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-beta.5" }
Expand Down
6 changes: 5 additions & 1 deletion plugins/dialog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## \[2.0.0-beta.8]

- [`cd57dcdf`](https://github.com/tauri-apps/plugins-workspace/commit/cd57dcdf049d759d06f5840b85e28f109f357f9a)([#1295](https://github.com/tauri-apps/plugins-workspace/pull/1295)) Fill file `len` and `modified_at` fields of `FileResponse` when using the open dialog.

## \[2.0.0-beta.3]

- [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17.
Expand Down Expand Up @@ -135,5 +139,5 @@
pull/371)) First v2 alpha release!
kspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
pull/371)) First v2 alpha release!
lpha release!
lpha release!
pull/371)) First v2 alpha release!
2 changes: 1 addition & 1 deletion plugins/dialog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-dialog"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application."
edition = { workspace = true }
authors = { workspace = true }
Expand Down
8 changes: 7 additions & 1 deletion plugins/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.8]

- [`58330f9e`](https://github.com/tauri-apps/plugins-workspace/commit/58330f9ec1d631f95de7f790076c5417cbf35733)([#1192](https://github.com/tauri-apps/plugins-workspace/pull/1192)) Enable cookies store feature flag by default.
- [`58330f9e`](https://github.com/tauri-apps/plugins-workspace/commit/58330f9ec1d631f95de7f790076c5417cbf35733)([#1192](https://github.com/tauri-apps/plugins-workspace/pull/1192)) Set the request origin to the current webview url.
- [`290616d8`](https://github.com/tauri-apps/plugins-workspace/commit/290616d8e38082daf9d6825337c6fc19bc3f41e3)([#1325](https://github.com/tauri-apps/plugins-workspace/pull/1325)) Fixed an issue with the http plugin when it was used with tauri v2 beta.19.

## \[2.0.0-beta.3]

- [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17.
Expand Down Expand Up @@ -141,6 +147,6 @@
371\)) First v2 alpha release!
!
371\)) First v2 alpha release!
lpha release!
lpha release!
!
371\)) First v2 alpha release!
2 changes: 1 addition & 1 deletion plugins/http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-http"
version = "2.0.0-beta.7"
version = "2.0.0-beta.8"
description = "Access an HTTP client written in Rust."
edition = { workspace = true }
authors = { workspace = true }
Expand Down
4 changes: 4 additions & 0 deletions plugins/sql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## \[2.0.0-beta.5]

- [`a940ef62`](https://github.com/tauri-apps/plugins-workspace/commit/a940ef6250d674c4160bbf5207d3df248b414d0a)([#1305](https://github.com/tauri-apps/plugins-workspace/pull/1305)) Preserve column order from SELECT query with indexmap

## \[2.0.0-beta.3]

- [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17.
Expand Down
4 changes: 2 additions & 2 deletions plugins/sql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-sql"
version = "2.0.0-beta.4"
version = "2.0.0-beta.5"
description = "Interface with SQL databases."
authors = { workspace = true }
license = { workspace = true }
Expand All @@ -27,7 +27,7 @@ futures-core = "0.3"
sqlx = { version = "0.7", features = [ "json", "time" ] }
time = "0.3"
tokio = { version = "1", features = [ "sync" ] }
indexmap = { version = "2.2.6", features = ["serde"] }
indexmap = { version = "2.2.6", features = [ "serde" ] }

[features]
sqlite = [ "sqlx/sqlite", "sqlx/runtime-tokio" ]
Expand Down
6 changes: 5 additions & 1 deletion plugins/updater/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## \[2.0.0-beta.6]

- [`806404e9`](https://github.com/tauri-apps/plugins-workspace/commit/806404e96e535be8c9878e90058c18fefd0ea64e)([#1329](https://github.com/tauri-apps/plugins-workspace/pull/1329)) Disable zip crate default features

## \[2.0.0-beta.3]

- [`bd1ed590`](https://github.com/tauri-apps/plugins-workspace/commit/bd1ed5903ffcce5500310dac1e59e8c67674ef1e)([#1237](https://github.com/tauri-apps/plugins-workspace/pull/1237)) Update to tauri beta.17.
Expand Down Expand Up @@ -105,5 +109,5 @@

- [`717ae67`](https://github.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!
92fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
92fac1f295998b93f2b9347f)([#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!
2 changes: 1 addition & 1 deletion plugins/updater/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-updater"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
description = "In-app updates for Tauri applications."
edition = { workspace = true }
authors = { workspace = true }
Expand Down

0 comments on commit ab5e181

Please sign in to comment.