Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Apr 29, 2024
1 parent 5a213a4 commit 649476e
Show file tree
Hide file tree
Showing 12 changed files with 48 additions and 12 deletions.
4 changes: 4 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
".changes/core-menu-resources-deadlock.md",
".changes/core-once-event-return-event-id.md",
".changes/core-path-basename-replace.md",
".changes/core-specta-integration.md",
".changes/core-start-resize-permission.md",
".changes/core-window-hasdisplayhandle.md",
".changes/csp-header-linux.md",
Expand All @@ -76,6 +77,7 @@
".changes/deb-rpm-provides-conflicts-replaces.md",
".changes/dev-fn.md",
".changes/downgrade-minisign.md",
".changes/drop-nsis-applicationid.md",
".changes/enhance-event-emit.md",
".changes/enhance-ipc-url-check.md",
".changes/enhance-resource-dir-resolution.md",
Expand Down Expand Up @@ -124,6 +126,7 @@
".changes/image-size-refactor.md",
".changes/inline-plugins.md",
".changes/ios-signing-optional.md",
".changes/ipc-allow-headers.md",
".changes/ipc-post-message-fallback.md",
".changes/ipc-request-param-refactor.md",
".changes/isolation-pattern-key-extractable.md",
Expand All @@ -136,6 +139,7 @@
".changes/permission-platforms.md",
".changes/permission-table.md",
".changes/plugin-global-api-script.md",
".changes/plugin-init-script-context.md",
".changes/preserve-channel-order.md",
".changes/progress-bar-state-refactor.md",
".changes/re-export-progress-bar-status.md",
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

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

## \[2.0.0-beta.17]

### New Features

- [`12b4159bd`](https://www.github.com/tauri-apps/tauri/commit/12b4159bdaf6e1f8d7b58ed8ff96345fa69c2ef0)([#9392](https://www.github.com/tauri-apps/tauri/pull/9392)) Add `specta` feature flag which adds `specta` support for `AppHandle`, `State`, `Window`, `Webview` and `WebviewWindow` types.

### Enhancements

- [`eff778b8f`](https://www.github.com/tauri-apps/tauri/commit/eff778b8f0c675fda3f6f6d1041bc94afd765d1c)([#9571](https://www.github.com/tauri-apps/tauri/pull/9571)) Run each plugin initialization script on its own context so they do not interfere with each other or the Tauri init script.

### Bug Fixes

- [`98101cb17`](https://www.github.com/tauri-apps/tauri/commit/98101cb17fe49f305a75fcb4267f82d89f7ac0c3)([#9561](https://www.github.com/tauri-apps/tauri/pull/9561)) Allow any headers on the IPC custom protocol.

## \[2.0.0-beta.16]

### New Features
Expand Down
6 changes: 3 additions & 3 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.16"
version = "2.0.0-beta.17"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -75,7 +75,7 @@ tracing = { version = "0.1", optional = true }
heck = "0.4"
log = "0.4"
dunce = "1"
specta = { version = "^2.0.0-rc.9", optional = true, default-features = false, features = ["function"] }
specta = { version = "^2.0.0-rc.9", optional = true, default-features = false, features = [ "function" ] }

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"windows\", target_os = \"macos\"))".dependencies]
muda = { version = "0.13", default-features = false, features = [ "serde" ] }
Expand Down Expand Up @@ -158,7 +158,7 @@ config-toml = [ "tauri-macros/config-toml" ]
image-ico = [ "image/ico" ]
image-png = [ "image/png" ]
macos-proxy = [ "tauri-runtime-wry/macos-proxy" ]
specta = ["dep:specta"]
specta = [ "dep:specta" ]

[[example]]
name = "commands"
Expand Down
6 changes: 6 additions & 0 deletions tooling/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.1-beta.11]

### Enhancements

- [`68c39b8c0`](https://www.github.com/tauri-apps/tauri/commit/68c39b8c0ca79e2fa9e250fccdf966136af18c0e)([#9527](https://www.github.com/tauri-apps/tauri/pull/9527)) Use nsis's built-in com plugin instead of ApplicationID plugin, this reduces the installer size by 150-200 KB, and also fixes pinned shortcut not getting cleaned up on uninstall

## \[2.0.1-beta.10]

### 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.10"
version = "2.0.1-beta.11"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"
Expand Down
6 changes: 6 additions & 0 deletions tooling/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.15]

### Dependencies

- Upgraded to `tauri-bundler@2.0.1-beta.11`

## \[2.0.0-beta.14]

### Enhancements
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.14"
version = "2.0.0-beta.15"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.70"
Expand Down Expand Up @@ -49,7 +49,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.10", default-features = false, path = "../bundler" }
tauri-bundler = { version = "2.0.1-beta.11", 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.14",
"version": "2.0.0-beta.15",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-beta.16",
"tauri": "2.0.0-beta.17",
"tauri-build": "2.0.0-beta.13",
"tauri-plugin": "2.0.0-beta.13"
}
6 changes: 6 additions & 0 deletions tooling/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.15]

### Dependencies

- Upgraded to `tauri-cli@2.0.0-beta.15`

## \[2.0.0-beta.14]

### Enhancements
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.14",
"version": "2.0.0-beta.15",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",
Expand Down

0 comments on commit 649476e

Please sign in to comment.