Skip to content

Commit

Permalink
chore: trigger release
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed May 3, 2023
1 parent f7ae621 commit 33bff7d
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 14 deletions.
7 changes: 0 additions & 7 deletions .changes/remote-urls.md

This file was deleted.

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

## \[0.10.3]

- Block remote URLs from accessing the IPC.
- [fa90214b0](https://www.github.com/tauri-apps/tauri/commit/fa90214b052b1a5d38d54fbf1ca422b4c37cfd1f) feat(core): block remote URLs from accessing the IPC on 2023-04-12

## \[0.10.2]

- Disable drag-n-drop of tao based on `fileDropEnabled` value.
Expand Down
4 changes: 2 additions & 2 deletions 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 = "0.10.2"
version = "0.10.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,7 +14,7 @@ readme = "README.md"

[dependencies]
wry = { version = "0.19", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.10.2", path = "../tauri-runtime" }
tauri-runtime = { version = "0.10.3", path = "../tauri-runtime" }
tauri-utils = { version = "1.0.3", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
Expand Down
5 changes: 5 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[0.10.3]

- Block remote URLs from accessing the IPC.
- [fa90214b0](https://www.github.com/tauri-apps/tauri/commit/fa90214b052b1a5d38d54fbf1ca422b4c37cfd1f) feat(core): block remote URLs from accessing the IPC on 2023-04-12

## \[0.10.2]

- Added option to disable tray menu on left click on macOS.
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.10.2"
version = "0.10.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand Down
5 changes: 5 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.9]

- Block remote URLs from accessing the IPC.
- [fa90214b0](https://www.github.com/tauri-apps/tauri/commit/fa90214b052b1a5d38d54fbf1ca422b4c37cfd1f) feat(core): block remote URLs from accessing the IPC on 2023-04-12

## \[1.0.8]

- Fix the filesystem scope allowing sub-directories of the directory picked by the dialog when `recursive` option was `false`.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.0.8"
version = "1.0.9"

[package.metadata.docs.rs]
no-default-features = true
Expand Down Expand Up @@ -55,10 +55,10 @@ url = { version = "2.2" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1.12"
tauri-runtime = { version = "0.10.2", path = "../tauri-runtime" }
tauri-runtime = { version = "0.10.3", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.4", path = "../tauri-macros" }
tauri-utils = { version = "1.0.3", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.10.2", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "0.10.3", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = { version = "1.0", features = [ "serde" ] }
serde_repr = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"version": "1.0.5",
"node": ">= 10.0.0"
},
"tauri": "1.0.7",
"tauri": "1.0.8",
"tauri-build": "1.0.4"
}

0 comments on commit 33bff7d

Please sign in to comment.