apply version updates (#4348)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-06-15 11:16:08 -03:00 committed by GitHub
parent 4c4acc3094
commit f5f9f105f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 64 additions and 18 deletions

View File

@ -130,6 +130,8 @@
".changes/data-url-csp.md",
".changes/debian-priority.md",
".changes/debian-remove-tray-icon.md",
".changes/default-menu-on-template.md",
".changes/default-menu.md",
".changes/dev-alias.md",
".changes/dev-cmd-config-arg.md",
".changes/dev-csp.md",
@ -219,6 +221,7 @@
".changes/fix-sidecar-refresh.md",
".changes/fix-tauri-docsrs.md",
".changes/fix-tray-command.md",
".changes/fix-tray-icon-lookup.md",
".changes/fix-tray-menu-ids-update.md",
".changes/fix-tray-remove-windows.md",
".changes/fix-updater-docs.md",

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.0.0-rc.15]
- Read the tray icon path relatively to the config directory.
- Bumped due to a bump in tauri-codegen.
- [562e8ca2](https://www.github.com/tauri-apps/tauri/commit/562e8ca23facf1a8e5fa6c8cdf872357d3523a78) fix(codegen): tray icon path is relative to the config directory on 2022-06-15
## \[1.0.0-rc.14]
- Do not copy the tray icon to the output directory on Linux since it is embedded in the binary.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.0.0-rc.14"
version = "1.0.0-rc.15"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -19,7 +19,7 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.0.0-rc.10", path = "../tauri-codegen", optional = true }
tauri-codegen = { version = "1.0.0-rc.11", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.0.0-rc.9", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.11"
serde_json = "1"

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.0.0-rc.11]
- Read the tray icon path relatively to the config directory.
- [562e8ca2](https://www.github.com/tauri-apps/tauri/commit/562e8ca23facf1a8e5fa6c8cdf872357d3523a78) fix(codegen): tray icon path is relative to the config directory on 2022-06-15
## \[1.0.0-rc.10]
- **Breaking change:** The `TrayIcon` enum has been removed and now `Icon` is used instead.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.0.0-rc.10"
version = "1.0.0-rc.11"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.0.0-rc.11]
- Read the tray icon path relatively to the config directory.
- Bumped due to a bump in tauri-codegen.
- [562e8ca2](https://www.github.com/tauri-apps/tauri/commit/562e8ca23facf1a8e5fa6c8cdf872357d3523a78) fix(codegen): tray icon path is relative to the config directory on 2022-06-15
## \[1.0.0-rc.10]
- **Breaking change:** The `TrayIcon` enum has been removed and now `Icon` is used instead.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.0.0-rc.10"
version = "1.0.0-rc.11"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -20,7 +20,7 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.0.0-rc.10", default-features = false, path = "../tauri-codegen" }
tauri-codegen = { version = "1.0.0-rc.11", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.0.0-rc.9", path = "../tauri-utils" }
[features]

View File

@ -1,5 +1,11 @@
# Changelog
## \[0.8.1]
- Add `Menu::os_default` which will create a menu filled with default menu items and submenus.
- Bumped due to a bump in tauri-runtime.
- [4c4acc30](https://www.github.com/tauri-apps/tauri/commit/4c4acc3094218dd9cee0f1ad61810c979e0b41fa) feat: implement `Default` for `Menu`, closes [#2398](https://www.github.com/tauri-apps/tauri/pull/2398) ([#4291](https://www.github.com/tauri-apps/tauri/pull/4291)) on 2022-06-15
## \[0.8.0]
- Removed `TrayIcon` and renamed `WindowIcon` to `Icon`, a shared type for both icons.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.8.0"
version = "0.8.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -14,7 +14,7 @@ readme = "README.md"
[dependencies]
wry = { version = "0.18.3", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.8.0", path = "../tauri-runtime" }
tauri-runtime = { version = "0.8.1", path = "../tauri-runtime" }
tauri-utils = { version = "1.0.0-rc.9", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"

View File

@ -1,5 +1,10 @@
# Changelog
## \[0.8.1]
- Add `Menu::os_default` which will create a menu filled with default menu items and submenus.
- [4c4acc30](https://www.github.com/tauri-apps/tauri/commit/4c4acc3094218dd9cee0f1ad61810c979e0b41fa) feat: implement `Default` for `Menu`, closes [#2398](https://www.github.com/tauri-apps/tauri/pull/2398) ([#4291](https://www.github.com/tauri-apps/tauri/pull/4291)) on 2022-06-15
## \[0.8.0]
- Removed `TrayIcon` and renamed `WindowIcon` to `Icon`, a shared type for both icons.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.8.0"
version = "0.8.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.0.0-rc.17]
- Add `Menu::os_default` which will create a menu filled with default menu items and submenus.
- [4c4acc30](https://www.github.com/tauri-apps/tauri/commit/4c4acc3094218dd9cee0f1ad61810c979e0b41fa) feat: implement `Default` for `Menu`, closes [#2398](https://www.github.com/tauri-apps/tauri/pull/2398) ([#4291](https://www.github.com/tauri-apps/tauri/pull/4291)) on 2022-06-15
## \[1.0.0-rc.16]
- **Breaking change:** The `TrayIcon` enum has been removed and now `Icon` is used instead.

View File

@ -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.0-rc.16"
version = "1.0.0-rc.17"
[package.metadata.docs.rs]
no-default-features = true
@ -54,10 +54,10 @@ url = { version = "2.2" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1.12"
tauri-runtime = { version = "0.8.0", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.0-rc.10", path = "../tauri-macros" }
tauri-runtime = { version = "0.8.1", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.0-rc.11", path = "../tauri-macros" }
tauri-utils = { version = "1.0.0-rc.9", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.8.0", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "0.8.1", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = { version = "1.0", features = [ "serde" ] }
serde_repr = "0.1"

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.0.0-rc.16]
- Use the default window menu in the app template.
- [4c4acc30](https://www.github.com/tauri-apps/tauri/commit/4c4acc3094218dd9cee0f1ad61810c979e0b41fa) feat: implement `Default` for `Menu`, closes [#2398](https://www.github.com/tauri-apps/tauri/pull/2398) ([#4291](https://www.github.com/tauri-apps/tauri/pull/4291)) on 2022-06-15
## \[1.0.0-rc.15]
- Removed the tray icon from the Debian and AppImage bundles since they are embedded in the binary now.

View File

@ -2725,7 +2725,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "1.0.0-rc.15"
version = "1.0.0-rc.16"
dependencies = [
"anyhow",
"base64",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "1.0.0-rc.15"
version = "1.0.0-rc.16"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.57"

View File

@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.0.0-rc.15",
"version": "1.0.0-rc.16",
"node": ">= 10.0.0"
},
"tauri": "1.0.0-rc.16",
"tauri-build": "1.0.0-rc.14"
"tauri": "1.0.0-rc.17",
"tauri-build": "1.0.0-rc.15"
}

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.0.0-rc.16]
- Use the default window menu in the app template.
- [4c4acc30](https://www.github.com/tauri-apps/tauri/commit/4c4acc3094218dd9cee0f1ad61810c979e0b41fa) feat: implement `Default` for `Menu`, closes [#2398](https://www.github.com/tauri-apps/tauri/pull/2398) ([#4291](https://www.github.com/tauri-apps/tauri/pull/4291)) on 2022-06-15
## \[1.0.0-rc.15]
- Removed the tray icon from the Debian and AppImage bundles since they are embedded in the binary now.

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.0.0-rc.15",
"version": "1.0.0-rc.16",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",