Skip to content

Commit

Permalink
apply version updates (#9639)
Browse files Browse the repository at this point in the history
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and FabianLars committed May 6, 2024
1 parent 3fbc170 commit 83acd85
Show file tree
Hide file tree
Showing 28 changed files with 152 additions and 49 deletions.
7 changes: 7 additions & 0 deletions .changes/pre.json
Expand Up @@ -20,6 +20,7 @@
".changes/app-manifest.md",
".changes/assets-setup.md",
".changes/beta.md",
".changes/better-error-for-invalid-plugin-config.md",
".changes/build-schema-generation.md",
".changes/bundler-deep-link-reg-path.md",
".changes/bundler-license.md",
Expand All @@ -40,6 +41,7 @@
".changes/cli-ds-store-dev-watch.md",
".changes/cli-empty-responses.md",
".changes/cli-frontend-dist-expected-path.md",
".changes/cli-icon-non-0-exit.md",
".changes/cli-include-dir-cargo-manifest-dir.md",
".changes/cli-migrate-non-utf8.md",
".changes/cli-migrate-unknown-plugins.md",
Expand Down Expand Up @@ -80,6 +82,8 @@
".changes/deb-rpm-post-pre-scripts-bundler.md",
".changes/deb-rpm-post-pre-scripts-config.md",
".changes/deb-rpm-provides-conflicts-replaces.md",
".changes/default-generic-for-menu.md",
".changes/default-generic-for-tray.md",
".changes/dev-fn.md",
".changes/downgrade-minisign.md",
".changes/drop-nsis-applicationid.md",
Expand Down Expand Up @@ -112,6 +116,7 @@
".changes/fix-reparent.md",
".changes/fix-rewrite-schema.md",
".changes/fix-runtime-wry-32bit.md",
".changes/fix-schemars-compatibility.md",
".changes/fix-scope-resolution.md",
".changes/fix-tauri-build-license-field.md",
".changes/fix-tauri-build-unix.md",
Expand All @@ -130,6 +135,7 @@
".changes/image-crate.md",
".changes/image-rgba-uint8array.md",
".changes/image-size-refactor.md",
".changes/improve-errors-for-missing-links-property.md",
".changes/inline-plugins.md",
".changes/ios-signing-optional.md",
".changes/ipc-allow-headers.md",
Expand Down Expand Up @@ -188,6 +194,7 @@
".changes/tauri-utils-capability-refactor.md",
".changes/tauri-utils-plugin-module.md",
".changes/tauri-webview-events.md",
".changes/tray-icon-rect.md",
".changes/tray-rect.md",
".changes/truncate-before-write-buildtask.md",
".changes/unstable-child-webview.md",
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions core/tauri-build/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-beta.14]

### Dependencies

- Upgraded to `tauri-utils@2.0.0-beta.14`
- Upgraded to `tauri-codegen@2.0.0-beta.14`

## \[2.0.0-beta.13]

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-beta.13"
version = "2.0.0-beta.14"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -28,8 +28,8 @@ rustdoc-args = [ "--cfg", "docsrs" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.0.0-beta.13", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.13", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-beta.14", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.17"
serde = "1"
serde_json = "1"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.14]

### Dependencies

- Upgraded to `tauri-utils@2.0.0-beta.14`

## \[2.0.0-beta.13]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.0-beta.13"
version = "2.0.0-beta.14"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -20,7 +20,7 @@ quote = "1"
syn = "2"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "2.0.0-beta.13", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-macros/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-beta.14]

### Dependencies

- Upgraded to `tauri-utils@2.0.0-beta.14`
- Upgraded to `tauri-codegen@2.0.0-beta.14`

## \[2.0.0-beta.13]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.0.0-beta.13"
version = "2.0.0-beta.14"
description = "Macros for the tauri crate."
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] }
quote = "1"
syn = { version = "2", features = [ "full" ] }
heck = "0.5"
tauri-codegen = { version = "2.0.0-beta.13", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-beta.13", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.0-beta.14", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
10 changes: 10 additions & 0 deletions core/tauri-plugin/CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-beta.14]

### Enhancements

- [`bf2635ab6`](https://www.github.com/tauri-apps/tauri/commit/bf2635ab6241a5b82569eafc939046d6e245f3ad)([#9632](https://www.github.com/tauri-apps/tauri/pull/9632)) Improve the error message that is shown when the `links` property is missing from a Tauri Plugin.

### Dependencies

- Upgraded to `tauri-utils@2.0.0-beta.14`

## \[2.0.0-beta.13]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-plugin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin"
version = "2.0.0-beta.13"
version = "2.0.0-beta.14"
description = "Build script and runtime Tauri plugin definitions"
authors = { workspace = true }
homepage = { workspace = true }
Expand Down Expand Up @@ -30,7 +30,7 @@ runtime = [ ]
[dependencies]
anyhow = { version = "1", optional = true }
serde = { version = "1", optional = true }
tauri-utils = { version = "2.0.0-beta.13", default-features = false, features = [ "build" ], path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-beta.14", default-features = false, features = [ "build" ], path = "../tauri-utils" }
serde_json = { version = "1", optional = true }
glob = { version = "0.3", optional = true }
toml = { version = "0.8", optional = true }
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-beta.15]

### Dependencies

- Upgraded to `tauri-utils@2.0.0-beta.14`
- Upgraded to `tauri-runtime@2.0.0-beta.15`

## \[2.0.0-beta.14]

### New Features
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-runtime-wry/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "2.0.0-beta.14"
version = "2.0.0-beta.15"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -15,8 +15,8 @@ rust-version = { workspace = true }
[dependencies]
wry = { version = "0.39.3", default-features = false, features = [ "drag-drop", "protocol", "os-webview" ] }
tao = { version = "0.27", default-features = false, features = [ "rwh_06" ] }
tauri-runtime = { version = "2.0.0-beta.14", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-beta.13", path = "../tauri-utils" }
tauri-runtime = { version = "2.0.0-beta.15", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils" }
raw-window-handle = "0.6"
http = "1.1"
url = "2"
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-runtime-wry/src/lib.rs
Expand Up @@ -4107,7 +4107,7 @@ fn inner_size(
webviews: &[WebviewWrapper],
has_children: bool,
) -> TaoPhysicalSize<u32> {
if !has_children && webviews.len() > 0 {
if !has_children && !webviews.is_empty() {
use wry::WebViewExtMacOS;
let webview = webviews.first().unwrap();
let view_frame = unsafe { cocoa::appkit::NSView::frame(webview.webview()) };
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.15]

### Dependencies

- Upgraded to `tauri-utils@2.0.0-beta.14`

## \[2.0.0-beta.14]

### New Features
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-runtime/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "2.0.0-beta.14"
version = "2.0.0-beta.15"
description = "Runtime for Tauri applications"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -29,7 +29,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "2.0.0-beta.13", path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils" }
http = "1.1"
raw-window-handle = "0.6"
url = { version = "2" }
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-utils/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.14]

### Bug Fixes

- [`3fbc1703f`](https://www.github.com/tauri-apps/tauri/commit/3fbc1703f107dfb2c5a75e848805dcf60d449eb1)([#9676](https://www.github.com/tauri-apps/tauri/pull/9676)) Fixes `schemars` compilation issue.

## \[2.0.0-beta.13]

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "2.0.0-beta.13"
version = "2.0.0-beta.14"
description = "Utilities for Tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down
20 changes: 20 additions & 0 deletions core/tauri/CHANGELOG.md
@@ -1,5 +1,25 @@
# Changelog

## \[2.0.0-beta.18]

### New Features

- [`07ff78c2d`](https://www.github.com/tauri-apps/tauri/commit/07ff78c2de74d3bd85328ce6536f8a858be89128)([#9615](https://www.github.com/tauri-apps/tauri/pull/9615)) Add `TrayIcon::rect` method to retrieve the tray icon rectangle

### Enhancements

- [`7f6d2698c`](https://www.github.com/tauri-apps/tauri/commit/7f6d2698c923019e4ce53f794e68aa7e56fd7b86)([#9631](https://www.github.com/tauri-apps/tauri/pull/9631)) Improve the error message that is shown when deserializing the Tauri plugin config.
- [`8a71858eb`](https://www.github.com/tauri-apps/tauri/commit/8a71858eb2a9dc12a43d8fb56f803cdcae072b68)([#9630](https://www.github.com/tauri-apps/tauri/pull/9630)) Provide a default for the runtime generic on `Menu`, `MenuItem`, `Submenu`, `PredefinedMenuItem`, `CheckMenuItem` and `IconMenuItem`.
- [`8a71858eb`](https://www.github.com/tauri-apps/tauri/commit/8a71858eb2a9dc12a43d8fb56f803cdcae072b68)([#9630](https://www.github.com/tauri-apps/tauri/pull/9630)) Provide a default for the runtime generic on `TrayIcon`.

### Dependencies

- Upgraded to `tauri-utils@2.0.0-beta.14`
- Upgraded to `tauri-runtime@2.0.0-beta.15`
- Upgraded to `tauri-runtime-wry@2.0.0-beta.15`
- Upgraded to `tauri-macros@2.0.0-beta.14`
- Upgraded to `tauri-build@2.0.0-beta.14`

## \[2.0.0-beta.17]

### New Features
Expand Down
14 changes: 7 additions & 7 deletions core/tauri/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-beta.17"
version = "2.0.0-beta.18"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -51,10 +51,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true }
url = "2"
anyhow = "1.0"
thiserror = "1.0"
tauri-runtime = { version = "2.0.0-beta.14", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.13", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.13", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.14", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "2.0.0-beta.15", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.14", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.14", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.15", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"
Expand Down Expand Up @@ -110,8 +110,8 @@ swift-rs = "1.0.6"

[build-dependencies]
heck = "0.5"
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.13" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.13", features = [ "build" ] }
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.14" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.14", features = [ "build" ] }

[dev-dependencies]
proptest = "1.4.0"
Expand Down

0 comments on commit 83acd85

Please sign in to comment.