-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply Version Updates From Current Changes (v1) (#9074)
Co-authored-by: lucasfernog <[email protected]>
- Loading branch information
1 parent
97a0514
commit b705f89
Showing
11 changed files
with
75 additions
and
76 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.changes/taurignore-ignoring-folders-not-working-for-watch.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,38 @@ | ||
workspace = {} | ||
workspace = { } | ||
|
||
[package] | ||
name = "tauri-bundler" | ||
version = "1.5.0" | ||
version = "1.5.1" | ||
authors = [ | ||
"George Burton <[email protected]>", | ||
"Tauri Programme within The Commons Conservancy", | ||
"Tauri Programme within The Commons Conservancy" | ||
] | ||
categories = ["command-line-utilities", "development-tools::cargo-plugins"] | ||
categories = [ "command-line-utilities", "development-tools::cargo-plugins" ] | ||
license = "Apache-2.0 OR MIT" | ||
keywords = ["bundle", "cargo", "tauri"] | ||
keywords = [ "bundle", "cargo", "tauri" ] | ||
repository = "https://github.com/tauri-apps/tauri" | ||
description = "Wrap rust executables in OS-specific app bundles for Tauri" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"] | ||
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ] | ||
|
||
[dependencies] | ||
tauri-utils = { version = "1.5.3", path = "../../core/tauri-utils", features = [ | ||
"resources", | ||
] } | ||
tauri-utils = { version = "1.5.3", path = "../../core/tauri-utils", features = [ "resources" ] } | ||
image = "0.24.7" | ||
flate2 = "1.0" | ||
anyhow = "1.0" | ||
thiserror = "1.0" | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
strsim = "0.10.0" | ||
tar = "0.4.40" | ||
walkdir = "2" | ||
handlebars = "4.5" | ||
tempfile = "3.8.1" | ||
log = { version = "0.4.21", features = ["kv"] } | ||
log = { version = "0.4.21", features = [ "kv" ] } | ||
dirs-next = "2.0" | ||
os_pipe = "1" | ||
ureq = { version = "2.9.1", default-features = false, features = [ | ||
"socks-proxy", | ||
] } | ||
ureq = { version = "2.9.1", default-features = false, features = [ "socks-proxy" ] } | ||
native-tls = { version = "0.2", optional = true } | ||
hex = "0.4" | ||
semver = "1" | ||
|
@@ -46,17 +42,20 @@ zip = "0.6" | |
dunce = "1" | ||
|
||
[target."cfg(target_os = \"windows\")".dependencies] | ||
uuid = { version = "1", features = ["v4", "v5"] } | ||
uuid = { version = "1", features = [ "v4", "v5" ] } | ||
winreg = "0.51" | ||
glob = "0.3" | ||
|
||
[target."cfg(target_os = \"windows\")".dependencies.windows-sys] | ||
version = "0.48" | ||
features = ["Win32_System_SystemInformation", "Win32_System_Diagnostics_Debug"] | ||
[target."cfg(target_os = \"windows\")".dependencies.windows-sys] | ||
version = "0.48" | ||
features = [ | ||
"Win32_System_SystemInformation", | ||
"Win32_System_Diagnostics_Debug" | ||
] | ||
|
||
[target."cfg(target_os = \"macos\")".dependencies] | ||
icns = { package = "tauri-icns", version = "0.1" } | ||
time = { version = "0.3", features = ["formatting"] } | ||
time = { version = "0.3", features = [ "formatting" ] } | ||
plist = "1" | ||
|
||
[target."cfg(any(target_os = \"macos\", target_os = \"windows\"))".dependencies] | ||
|
@@ -72,7 +71,7 @@ name = "tauri_bundler" | |
path = "src/lib.rs" | ||
|
||
[features] | ||
default = ["rustls"] | ||
native-tls = ["ureq/native-tls"] | ||
native-tls-vendored = ["native-tls", "native-tls/vendored"] | ||
rustls = ["ureq/tls"] | ||
default = [ "rustls" ] | ||
native-tls = [ "ureq/native-tls" ] | ||
native-tls-vendored = [ "native-tls", "native-tls/vendored" ] | ||
rustls = [ "ureq/tls" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# Changelog | ||
|
||
## \[1.5.11] | ||
|
||
### Bug Fixes | ||
|
||
- [`97a05145f`](https://www.github.com/tauri-apps/tauri/commit/97a05145fbb24533526eba6589594f03046e11df)([#9119](https://www.github.com/tauri-apps/tauri/pull/9119)) Fix compilation error due to dependency on unstable features of `log` crate. | ||
- [`b15948b11`](https://www.github.com/tauri-apps/tauri/commit/b15948b11c0e362eea7ef57a4606f15f7dbd886b)([#8903](https://www.github.com/tauri-apps/tauri/pull/8903)) Fix `.taurignore` failing to ignore in some cases. | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
|
||
## \[1.5.10] | ||
|
||
### New Features | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"cli.js": { | ||
"version": "1.5.10", | ||
"version": "1.5.11", | ||
"node": ">= 10.0.0" | ||
}, | ||
"tauri": "1.6.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# Changelog | ||
|
||
## \[1.5.11] | ||
|
||
### Bug Fixes | ||
|
||
- [`b15948b11`](https://www.github.com/tauri-apps/tauri/commit/b15948b11c0e362eea7ef57a4606f15f7dbd886b)([#8903](https://www.github.com/tauri-apps/tauri/pull/8903)) Fix `.taurignore` failing to ignore in some cases. | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
|
||
## \[1.5.10] | ||
|
||
### Bug Fixes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters