Skip to content

Commit

Permalink
apply version updates (#9871)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <[email protected]>
  • Loading branch information
github-actions[bot] and lucasfernog authored Jul 2, 2024
1 parent 08f57ef commit 89f3048
Show file tree
Hide file tree
Showing 42 changed files with 164 additions and 137 deletions.
5 changes: 0 additions & 5 deletions .changes/bundler-local-tools-directory.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/bundler-rpm.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/check-permission-on-macos.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/cli-profile-parse-syntax.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/cli-use-local-tools-directory.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/custom-sign-command.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/deb-rpm-provides-conflicts-replaces.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/feat-add-dmg-config.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/feat-wix-arm64.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/fix-missing-depends.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-test-invoke-key.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/nsis-run-as-user.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/shell-command-lost-events.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/shell-execute-extra-newline.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/shell-execute-performance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/utils-sign-command.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/utils-use-local-tools-directory.md

This file was deleted.

14 changes: 7 additions & 7 deletions Cargo.lock

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

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

## \[1.5.3]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[1.5.2]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.5.2"
version = "1.5.3"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.4.3", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.5.4", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.4.4", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.6.0", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.15"
serde = "1"
serde_json = "1"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.4.4]

### Dependencies

- Upgraded to `[email protected]`

## \[1.4.3]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.4.3"
version = "1.4.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "1.5.4", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.6.0", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[1.4.5]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[1.4.4]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.4.4"
version = "1.4.5"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] }
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.5"
tauri-codegen = { version = "1.4.3", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.5.4", path = "../tauri-utils" }
tauri-codegen = { version = "1.4.4", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.6.0", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[0.14.9]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[0.14.8]

### Security fixes
Expand Down
6 changes: 3 additions & 3 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.14.8"
version = "0.14.9"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"

[dependencies]
wry = { version = "0.24.10", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.14.3", path = "../tauri-runtime" }
tauri-utils = { version = "1.5.4", path = "../tauri-utils" }
tauri-runtime = { version = "0.14.4", path = "../tauri-runtime" }
tauri-utils = { version = "1.6.0", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
raw-window-handle = "0.5"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[0.14.4]

### Dependencies

- Upgraded to `[email protected]`

## \[0.14.3]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions 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.14.3"
version = "0.14.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -26,7 +26,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "1.5.4", path = "../tauri-utils" }
tauri-utils = { version = "1.6.0", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"
Expand Down
9 changes: 9 additions & 0 deletions core/tauri-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## \[1.6.0]

### New Features

- [`253595a22`](https://www.github.com/tauri-apps/tauri/commit/253595a22d8659a1cb199bfc423e988ea82191e6) ([#9809](https://www.github.com/tauri-apps/tauri/pull/9809)) Add RPM packaging
- [`78fc84137`](https://www.github.com/tauri-apps/tauri/commit/78fc841370a76adf7af413bf1c9490b046b50de4) ([#9942](https://www.github.com/tauri-apps/tauri/pull/9942)) Added support for `provides`, `conflicts` and `replaces` (`obsoletes` for RPM) options for `bundler > deb` and `bundler > rpm` configs.
- [`590966276`](https://www.github.com/tauri-apps/tauri/commit/5909662766c2fe9947a9eadf33725170c2f6fa99) ([#9902](https://www.github.com/tauri-apps/tauri/pull/9902)) Add `sign_command` in `WindowsConfig`
- [`a301be52d`](https://www.github.com/tauri-apps/tauri/commit/a301be52d276f1e99316d23b4f0a8e458e29bc35) ([#9914](https://www.github.com/tauri-apps/tauri/pull/9914)) Add `use_local_tools_dir` option.

## \[1.5.4]

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "1.5.4"
version = "1.6.0"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
Expand Down
19 changes: 19 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## \[1.7.0]

### Enhancements

- [`44e3335da`](https://www.github.com/tauri-apps/tauri/commit/44e3335da8c1a811a2ebe72f2036dfad2381da24) ([#9796](https://www.github.com/tauri-apps/tauri/pull/9796)) Enhance the speed of The JS `Command.execute` API from `shell` module.

### Bug Fixes

- [`8ee8f0939`](https://www.github.com/tauri-apps/tauri/commit/8ee8f093900b22c584fdf00c5efdb43ef34f6771) ([#9588](https://www.github.com/tauri-apps/tauri/pull/9588)) Fix check temporary path permission on macos.
- [`07b02c9f9`](https://www.github.com/tauri-apps/tauri/commit/07b02c9f962312f4d90c001d21d3d72ca9daa03a) ([#9972](https://www.github.com/tauri-apps/tauri/pull/9972)) Added `test::INVOKE_KEY` to be used in `tauri::InvokePayload` when testing using `test::assert_ipc_response` and `test::get_ipc_response`.
- [`e48157da2`](https://www.github.com/tauri-apps/tauri/commit/e48157da2f0b88d8c5df13f3287705172a684525) ([#9698](https://www.github.com/tauri-apps/tauri/pull/9698)) Fix the JS `Command` API from `shell` module, losing events for `stdout`.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[1.6.7]

### Bug Fixes
Expand Down
Loading

0 comments on commit 89f3048

Please sign in to comment.