Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir authored Jul 8, 2024
1 parent c734b9e commit ab921a9
Show file tree
Hide file tree
Showing 16 changed files with 92 additions and 14 deletions.
9 changes: 9 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
".changes/cli-allow-kotlin-keyword-as-ident.md",
".changes/cli-build-no-bundle.md",
".changes/cli-chinese-product-name.md",
".changes/cli-clipboard-manager-migrate-perms.md",
".changes/cli-ds-store-dev-watch.md",
".changes/cli-empty-responses.md",
".changes/cli-frontend-dist-expected-path.md",
Expand Down Expand Up @@ -95,6 +96,7 @@
".changes/core-menu-resources-deadlock.md",
".changes/core-once-event-return-event-id.md",
".changes/core-path-basename-replace.md",
".changes/core-restart-fn-diverging.md",
".changes/core-specta-integration.md",
".changes/core-start-resize-permission.md",
".changes/core-window-hasdisplayhandle.md",
Expand All @@ -118,10 +120,12 @@
".changes/event-reopen.md",
".changes/expose-image-constructor.md",
".changes/expose-js-image.md",
".changes/feat-wix-arm64.md",
".changes/fix-acl-webview-check.md",
".changes/fix-add-child-deadlock.md",
".changes/fix-api-export-mocks-module.md",
".changes/fix-build-script-rerun-macos.md",
".changes/fix-bundler-updater-artifacts-warning.md",
".changes/fix-capability-schema-definitions.md",
".changes/fix-capability-totokens.md",
".changes/fix-channel-buffer-processing.md",
Expand Down Expand Up @@ -199,9 +203,11 @@
".changes/nsis-delete-data-button-dpi.md",
".changes/nsis-dpi-aware.md",
".changes/nsis-esitimated-size-unit.md",
".changes/nsis-ifmacrodef.md",
".changes/nsis-migrate-shortcut.md",
".changes/nsis-no-compression.md",
".changes/nsis-run-as-user.md",
".changes/nsis-run-progrma-space.md",
".changes/nsis-shortcuts-regression.md",
".changes/nsis-start-menu-folder-breaking.md",
".changes/nsis-start-menu-folder.md",
Expand All @@ -226,6 +232,7 @@
".changes/rename-file-drop.md",
".changes/reparent.md",
".changes/rerun-if-permission-created.md",
".changes/resize-false-undecorated-edge.md",
".changes/resources_table_access.md",
".changes/revert-app-region-drag.md",
".changes/revert-fix-visibility-change.md",
Expand Down Expand Up @@ -263,6 +270,7 @@
".changes/tauri-plugin-identifier-alphanumeric.md",
".changes/tauri-runtime-webview-events.md",
".changes/tauri-scope-object-error-sync.md",
".changes/tauri-set-title-bar-style.md",
".changes/tauri-utils-capability-refactor.md",
".changes/tauri-utils-package-name-removed.md",
".changes/tauri-utils-plugin-module.md",
Expand Down Expand Up @@ -294,6 +302,7 @@
".changes/webview-builder-on-download.md",
".changes/webview-navigate-result.md",
".changes/windows-rs-0.57.md",
".changes/with-webview-wry-feature.md",
".changes/wry-0.36.md",
".changes/wry-0.37.md",
".changes/wry-0.38.md",
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.20]

### Bug Fixes

- [`afb102c59`](https://www.github.com/tauri-apps/tauri/commit/afb102c59ba0de27e330589269001e0d2a01576d) ([#10211](https://www.github.com/tauri-apps/tauri/pull/10211)) Fix window edge not working after setting resizable false and decorated false dynamically

## \[2.0.0-beta.19]

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-runtime-wry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "2.0.0-beta.19"
version = "2.0.0-beta.20"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down
18 changes: 18 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## \[2.0.0-beta.24]

### New Features

- [`7bc6a2a1d`](https://www.github.com/tauri-apps/tauri/commit/7bc6a2a1d6d2c5406d91cac94d33bce76443c28f) ([#9788](https://www.github.com/tauri-apps/tauri/pull/9788)) Add a new method to set title bar style dynamically on macOS.

### Enhancements

- [`a7354f9a8`](https://www.github.com/tauri-apps/tauri/commit/a7354f9a81d4db83ff3d34b29617717117ad64d2) ([#10171](https://www.github.com/tauri-apps/tauri/pull/10171)) Mark `AppHandle::restart` and `process::restart` as [diverging functions](https://doc.rust-lang.org/rust-by-example/fn/diverging.html).

### Bug Fixes

- [`55733aba9`](https://www.github.com/tauri-apps/tauri/commit/55733aba9c5a5c8d664afea0c83d9337bc99387d) ([#10176](https://www.github.com/tauri-apps/tauri/pull/10176)) Move `PluginApi::register_ios_plugin` behind the `wry` Cargo feature as `Webview::with_webview` is only available when that feature is enabled.

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-beta.23]

### New Features
Expand Down
4 changes: 2 additions & 2 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-beta.23"
version = "2.0.0-beta.24"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -54,7 +54,7 @@ thiserror = "1.0"
tauri-runtime = { version = "2.0.0-beta.19", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.18", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.18", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.19", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "2.0.0-beta.20", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"
Expand Down
6 changes: 6 additions & 0 deletions tooling/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.15]

### New Features

- [`7bc6a2a1d`](https://www.github.com/tauri-apps/tauri/commit/7bc6a2a1d6d2c5406d91cac94d33bce76443c28f) ([#9788](https://www.github.com/tauri-apps/tauri/pull/9788)) Add a new method to set title bar style dynamically on macOS.

## \[2.0.0-beta.14]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion tooling/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "2.0.0-beta.14",
"version": "2.0.0-beta.15",
"description": "Tauri API definitions",
"funding": {
"type": "opencollective",
Expand Down
15 changes: 15 additions & 0 deletions tooling/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## \[2.0.1-beta.18]

### New Features

- [`c734b9e3c`](https://www.github.com/tauri-apps/tauri/commit/c734b9e3cd6e5a22dfd84ec8a779c2ee9591751b) ([#10072](https://www.github.com/tauri-apps/tauri/pull/10072)) Upgraded the WiX version to 3.14 which fixes vulnerability issues and adds support for Arm targets.

### Bug Fixes

- [`96f65fef3`](https://www.github.com/tauri-apps/tauri/commit/96f65fef3659e83bbee4426e94da4472c962e391) ([#10188](https://www.github.com/tauri-apps/tauri/pull/10188)) On macOS, the bundler will now correctly print a warning when the updater is enabled while the `.app` bundle is disabled.
- [`5998a90f3`](https://www.github.com/tauri-apps/tauri/commit/5998a90f3f0dda124eff1ce3c59e96d329e8b435) ([#10184](https://www.github.com/tauri-apps/tauri/pull/10184)) Fix NSIS installer failing to launch apps that contain spaces after installation.

### Breaking Changes

- [`11aa7743e`](https://www.github.com/tauri-apps/tauri/commit/11aa7743e7a277ed9ec3e92040dc484afe77d261) ([#10177](https://www.github.com/tauri-apps/tauri/pull/10177)) Changed NSIS installer hooks from `!define` to `!macro`

## \[2.0.1-beta.17]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion tooling/bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { }

[package]
name = "tauri-bundler"
version = "2.0.1-beta.17"
version = "2.0.1-beta.18"
authors = [
"George Burton <[email protected]>",
"Tauri Programme within The Commons Conservancy"
Expand Down
14 changes: 14 additions & 0 deletions tooling/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## \[2.0.0-beta.22]

### New Features

- [`c734b9e3c`](https://www.github.com/tauri-apps/tauri/commit/c734b9e3cd6e5a22dfd84ec8a779c2ee9591751b) ([#10072](https://www.github.com/tauri-apps/tauri/pull/10072)) Upgraded the WiX version to 3.14 which fixes vulnerability issues and adds support for Arm targets.

### Bug Fixes

- [`94136578b`](https://www.github.com/tauri-apps/tauri/commit/94136578bc89e4b973c471050ae9c2d83ffcb7c6) ([#10186](https://www.github.com/tauri-apps/tauri/pull/10186)) Fix `migrate` command, migrating incorrect permissions for `clipboard`.

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-beta.21]

### New Features
Expand Down
4 changes: 2 additions & 2 deletions tooling/cli/Cargo.lock

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

4 changes: 2 additions & 2 deletions tooling/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [ "node" ]

[package]
name = "tauri-cli"
version = "2.0.0-beta.21"
version = "2.0.0-beta.22"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.70"
Expand Down Expand Up @@ -48,7 +48,7 @@ sublime_fuzzy = "0.7"
clap_complete = "4"
clap = { version = "4.5", features = [ "derive", "env" ] }
anyhow = "1.0"
tauri-bundler = { version = "2.0.1-beta.17", default-features = false, path = "../bundler" }
tauri-bundler = { version = "2.0.1-beta.18", default-features = false, path = "../bundler" }
colored = "2.1"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0", features = [ "preserve_order" ] }
Expand Down
4 changes: 2 additions & 2 deletions tooling/cli/metadata-v2.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"cli.js": {
"version": "2.0.0-beta.21",
"version": "2.0.0-beta.22",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-beta.23",
"tauri": "2.0.0-beta.24",
"tauri-build": "2.0.0-beta.18",
"tauri-plugin": "2.0.0-beta.18"
}
10 changes: 10 additions & 0 deletions tooling/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-beta.22]

### Bug Fixes

- [`94136578b`](https://www.github.com/tauri-apps/tauri/commit/94136578bc89e4b973c471050ae9c2d83ffcb7c6) ([#10186](https://www.github.com/tauri-apps/tauri/pull/10186)) Fix `migrate` command, migrating incorrect permissions for `clipboard`.

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-beta.21]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "2.0.0-beta.21",
"version": "2.0.0-beta.22",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",
Expand Down

0 comments on commit ab921a9

Please sign in to comment.