Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Jul 13, 2023
1 parent 290e366 commit 90836f5
Show file tree
Hide file tree
Showing 40 changed files with 147 additions and 116 deletions.
5 changes: 0 additions & 5 deletions .changes/api-formAsync.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/bundler-bundle-order.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/bundler-nsis-sign-uninstaller.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/cli-disable-version-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/core-base-links-target.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/enhance-read-dir-error.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-nsis-legal-copyright.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-nsis-previous-installation-method.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-nsis-uninstall-previous-version.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/kuchikiki.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/nsis-start-menu-shortcut.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/plugin-custom-protocol.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/remove-bitness.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/tauri-build-copy-webview2-runtime.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/updater-admin-launch-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/updater-redirect.md

This file was deleted.

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

## \[1.4.1]

### Bug Fixes

- [`290e366a`](https://www.github.com/tauri-apps/tauri/commit/290e366ae98e9a52b1b43bfd3e285150427ebffa)([#7373](https://www.github.com/tauri-apps/tauri/pull/7373)) Correctly copy the WebView2 runtime in development when `webviewInstallMode` is used instead of `webviewFixedRuntimePath`.

### Dependencies

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

## \[1.4.0]

### Enhancements
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.4.0"
version = "1.4.1"
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.0", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.4.0", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.4.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.4.1", 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.1]

### Dependencies

- Upgraded to `[email protected]`

## \[1.4.0]

### Enhancements
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.0"
version = "1.4.1"
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.4.0", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.4.1", 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.1]

### Dependencies

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

## \[1.4.0]

### Enhancements
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.0"
version = "1.4.1"
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 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.4.0", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.4.0", path = "../tauri-utils" }
tauri-codegen = { version = "1.4.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.4.1", 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.1]

### Dependencies

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

## \[0.14.0]

### New Features
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.0"
version = "0.14.1"
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.1", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.14.0", path = "../tauri-runtime" }
tauri-utils = { version = "1.4.0", path = "../tauri-utils" }
tauri-runtime = { version = "0.14.1", path = "../tauri-runtime" }
tauri-utils = { version = "1.4.1", 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.1]

### Dependencies

- Upgraded to `[email protected]`

## \[0.14.0]

### New Features
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.0"
version = "0.14.1"
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.4.0", path = "../tauri-utils" }
tauri-utils = { version = "1.4.1", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.4.1]

### Security fixes

- [`eeff1784`](https://www.github.com/tauri-apps/tauri/commit/eeff1784e1ffa568e4ba024e17dd611f8e086784)([#7359](https://www.github.com/tauri-apps/tauri/pull/7359)) Changed HTML implementation from unmaintained `kuchiki` to `kuchikiki`.

## \[1.4.0]

### New Features
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.4.0"
version = "1.4.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
Expand Down
23 changes: 23 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## \[1.5.0]

### New Features

- [`fdaee9a5`](https://www.github.com/tauri-apps/tauri/commit/fdaee9a5ce988c448dd035c2050c339d275e8d15)([#7330](https://www.github.com/tauri-apps/tauri/pull/7330)) Add `tauri::plugin::Builder::register_uri_scheme_protocol`

### Enhancements

- [`757e959e`](https://www.github.com/tauri-apps/tauri/commit/757e959eb276ed535cfddb0dea8897c56441c644)([#7285](https://www.github.com/tauri-apps/tauri/pull/7285)) Open links externally when `<base target="_blank" />` exists
- [`c9827338`](https://www.github.com/tauri-apps/tauri/commit/c98273387c0ffbb8d0de78ce17006411a1f503ee)([#7379](https://www.github.com/tauri-apps/tauri/pull/7379)) Enhance `readDir` API error with path information.

### Bug Fixes

- [`1a3dcdb8`](https://www.github.com/tauri-apps/tauri/commit/1a3dcdb8302fad511f2c1cd418fbc4cff0bd62ac)([#7184](https://www.github.com/tauri-apps/tauri/pull/7184)) On Windows, fix NSIS installers requiring administrator rights failing to be launched by updater.
- [`fa7f9b77`](https://www.github.com/tauri-apps/tauri/commit/fa7f9b77ab8f0c890e9d7b120901610e0d3e4c46)([#7329](https://www.github.com/tauri-apps/tauri/pull/7329)) Fix updater not following endpoint redirects.

### Dependencies

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

## \[1.4.1]

### Bug Fixes
Expand Down
10 changes: 5 additions & 5 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.4.1"
version = "1.5.0"

[package.metadata.docs.rs]
no-default-features = true
Expand Down Expand Up @@ -50,10 +50,10 @@ url = { version = "2.3" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
tauri-runtime = { version = "0.14.0", path = "../tauri-runtime" }
tauri-macros = { version = "1.4.0", path = "../tauri-macros" }
tauri-utils = { version = "1.4.0", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.14.0", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "0.14.1", path = "../tauri-runtime" }
tauri-macros = { version = "1.4.1", path = "../tauri-macros" }
tauri-utils = { version = "1.4.1", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.14.1", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = { version = "1.0", features = [ "serde" ] }
serde_repr = "0.1"
Expand Down
6 changes: 6 additions & 0 deletions tooling/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.4.1]

### Bug Fixes

- [`2eab1505`](https://www.github.com/tauri-apps/tauri/commit/2eab1505632ff71431d4c31c49b5afc78fa5b9dd)([#7390](https://www.github.com/tauri-apps/tauri/pull/7390)) Fix `Body.form` static not reading and sending entries of type `Blob` (including subclasses such as `File`)

## \[1.4.0]

### New Features
Expand Down
2 changes: 1 addition & 1 deletion tooling/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "1.4.0",
"version": "1.4.1",
"description": "Tauri API definitions",
"type": "module",
"funding": {
Expand Down
19 changes: 19 additions & 0 deletions tooling/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## \[1.4.0]

### Enhancements

- [`764968ab`](https://www.github.com/tauri-apps/tauri/commit/764968ab383ec639e061986bc2411dd44e71b612)([#7348](https://www.github.com/tauri-apps/tauri/pull/7348)) Sign NSIS uninstaller as well.

### Bug Fixes

- [`46df2c9b`](https://www.github.com/tauri-apps/tauri/commit/46df2c9b917096388695f72ca4c56791fe652ef6)([#7349](https://www.github.com/tauri-apps/tauri/pull/7349)) Fix bundler skipping updater artifacts if `updater` target shows before other updater-enabled targets in the list, see [#7349](https://github.com/tauri-apps/tauri/issues/7349).
- [`eba8e131`](https://www.github.com/tauri-apps/tauri/commit/eba8e1315ed7078eb9a9479f9e0072b061067341)([#7386](https://www.github.com/tauri-apps/tauri/pull/7386)) On Windows, fix installation packages not showing correct copyright information.
- [`32218a6f`](https://www.github.com/tauri-apps/tauri/commit/32218a6f8c1d90c2503e7cbc4523e4ab464ba032)([#7326](https://www.github.com/tauri-apps/tauri/pull/7326)) On Windows, fix NSIS installer identifying a previous NSIS-installed app as WiX-installed app and then fails to uninstall it.
- [`0ae53f41`](https://www.github.com/tauri-apps/tauri/commit/0ae53f413948c7b955e595aa9c6c9e777caa8666)([#7317](https://www.github.com/tauri-apps/tauri/pull/7317)) On Windows, fix NSIS installer showing an error dialog even when the previous version was uninstalled sucessfully.
- [`6e36ebbf`](https://www.github.com/tauri-apps/tauri/commit/6e36ebbf84dee11a98d8df916c316c7d6f67b2a8)([#7315](https://www.github.com/tauri-apps/tauri/pull/7315)) On Windows, fix NSIS uninstaller failing to remove Start Menu shortcut if `perMachine` mode is used.

### Dependencies

- Upgraded to `[email protected]`
- [`a2be88a2`](https://www.github.com/tauri-apps/tauri/commit/a2be88a21db76e9fa063c527031f3849f066eecd)([#7405](https://www.github.com/tauri-apps/tauri/pull/7405)) Removed the `bitness` dependency to speed up compile time.

## \[1.3.0]

### New Features
Expand Down
Loading

0 comments on commit 90836f5

Please sign in to comment.