Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Oct 8, 2022
1 parent 8357ce5 commit a4d21bd
Show file tree
Hide file tree
Showing 57 changed files with 168 additions and 222 deletions.
5 changes: 0 additions & 5 deletions .changes/api-fs-exists-return-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/api-monitor-class-initialization.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/api-node14.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/app-dirs-api.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/asset-protocol-streaming-mime-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/bundler-japanese-lang.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/cli-product-name-validation.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/cli-static-files-hot-reload.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/cli-target-triple-env.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/cli.js-node-shim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/dialog-save-return-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/escape-pattern.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-cli-envs.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/fix-html-template.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-resource-scope.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/hidden-title-macos.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/mac-app-hide-allowlist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/mac-app-hide-api.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/mac-app-hide-runtime.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/mac-app-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/menu-deadlock.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/menu-on-left-click.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changes/msrv-1.59.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/publisher-field.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/resource-dir-canonicalize.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/transparent-titlebar-macos.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/tray-cleanup.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/tray-title-config.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/tray-title.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/user-agent-config.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/user-agent.md

This file was deleted.

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

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/wix-clear-env.md

This file was deleted.

4 changes: 4 additions & 0 deletions core/tauri-build/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## \[1.2.0]

- - [7d9aa398](https://www.github.com/tauri-apps/tauri/commit/7d9aa3987efce2d697179ffc33646d086c68030c) feat: bump MSRV to 1.59 ([#5296](https://www.github.com/tauri-apps/tauri/pull/5296)) on 2022-09-28

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.1.1"
version = "1.2.0"
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.1.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.1.1", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.2.0", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.2.0", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.12"
serde_json = "1"
heck = "0.4"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[1.2.0]

- Properly serialize HTML template tags.
- [aec5537d](https://www.github.com/tauri-apps/tauri/commit/aec5537de0205f62b2ae5c89da04d21930a6fc2e) fix(codegen): serialize template tags, closes [#4410](https://www.github.com/tauri-apps/tauri/pull/4410) ([#5247](https://www.github.com/tauri-apps/tauri/pull/5247)) on 2022-09-28
- - [7d9aa398](https://www.github.com/tauri-apps/tauri/commit/7d9aa3987efce2d697179ffc33646d086c68030c) feat: bump MSRV to 1.59 ([#5296](https://www.github.com/tauri-apps/tauri/pull/5296)) on 2022-09-28

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.1.1"
version = "1.2.0"
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.1.1", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.2.0", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
4 changes: 4 additions & 0 deletions core/tauri-macros/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## \[1.2.0]

- - [7d9aa398](https://www.github.com/tauri-apps/tauri/commit/7d9aa3987efce2d697179ffc33646d086c68030c) feat: bump MSRV to 1.59 ([#5296](https://www.github.com/tauri-apps/tauri/pull/5296)) on 2022-09-28

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.1.1"
version = "1.2.0"
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.1.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.1.1", path = "../tauri-utils" }
tauri-codegen = { version = "1.2.0", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.2.0", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
20 changes: 20 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
@@ -1,5 +1,25 @@
# Changelog

## \[0.12.0]

- Add `hidden_title` option for macOS windows.
- [321f3fed](https://www.github.com/tauri-apps/tauri/commit/321f3fed19df40c1223099bce953332b7f00f7a9) feat(macos): `title_bar_style` and `hidden_title` window options, closes [#2663](https://www.github.com/tauri-apps/tauri/pull/2663) ([#3965](https://www.github.com/tauri-apps/tauri/pull/3965)) on 2022-09-30
- Added `Runtime::show()`, `RuntimeHandle::show()`, `Runtime::hide()`, `RuntimeHandle::hide()` for hiding/showing the entire application on macOS.
- [39bf895b](https://www.github.com/tauri-apps/tauri/commit/39bf895b73ec6b53f5758815396ba85dda6b9c67) feat(macOS): Add application `show` and `hide` methods ([#3689](https://www.github.com/tauri-apps/tauri/pull/3689)) on 2022-10-03
- Fix regression in `SystemTray::with_menu_on_left_click`
- [f8a3becb](https://www.github.com/tauri-apps/tauri/commit/f8a3becb287942db7f7b551b5db6aeb5a2e939ee) feat(core): add option to disable tray menu on left click, closes [#4584](https://www.github.com/tauri-apps/tauri/pull/4584) ([#4587](https://www.github.com/tauri-apps/tauri/pull/4587)) on 2022-07-05
- [7bbf167c](https://www.github.com/tauri-apps/tauri/commit/7bbf167c1c84493ea6e2353f720edafd7daa47e4) Apply Version Updates From Current Changes ([#4560](https://www.github.com/tauri-apps/tauri/pull/4560)) on 2022-07-06
- [63011ca8](https://www.github.com/tauri-apps/tauri/commit/63011ca84e7a22c8c0d8bd1c1be6592140f93ff2) fix(macos): fix regression in `with_menu_on_left_click`, closes [#5220](https://www.github.com/tauri-apps/tauri/pull/5220) ([#5235](https://www.github.com/tauri-apps/tauri/pull/5235)) on 2022-09-30
- - [7d9aa398](https://www.github.com/tauri-apps/tauri/commit/7d9aa3987efce2d697179ffc33646d086c68030c) feat: bump MSRV to 1.59 ([#5296](https://www.github.com/tauri-apps/tauri/pull/5296)) on 2022-09-28
- Add `title_bar_style` option for macOS windows.
- [321f3fed](https://www.github.com/tauri-apps/tauri/commit/321f3fed19df40c1223099bce953332b7f00f7a9) feat(macos): `title_bar_style` and `hidden_title` window options, closes [#2663](https://www.github.com/tauri-apps/tauri/pull/2663) ([#3965](https://www.github.com/tauri-apps/tauri/pull/3965)) on 2022-09-30
- Fix regression introduce in tauri@1.1 which prevented removing tray icon when the app exits on Windows.
- [f756cd5e](https://www.github.com/tauri-apps/tauri/commit/f756cd5e7ecc86f178f8d602eded1e1b6ecb51f3) fix(core): wait for tray cleanup before exiting app, closes [#5244](https://www.github.com/tauri-apps/tauri/pull/5244) ([#5245](https://www.github.com/tauri-apps/tauri/pull/5245)) on 2022-10-04
- Added methods to set the system tray title on macOS.
- [8f1ace77](https://www.github.com/tauri-apps/tauri/commit/8f1ace77956ac3477826ceb059a191e55b3fff93) feat: expose `set_title` for MacOS tray ([#5182](https://www.github.com/tauri-apps/tauri/pull/5182)) on 2022-09-30
- Added the `user_agent` option when creating a window.
- [a6c94119](https://www.github.com/tauri-apps/tauri/commit/a6c94119d8545d509723b147c273ca5edfe3729f) feat(core): expose user_agent to window config ([#5317](https://www.github.com/tauri-apps/tauri/pull/5317)) on 2022-10-02

## \[0.11.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-runtime-wry/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.11.1"
version = "0.12.0"
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 = { git = "https://github.com/tauri-apps/wry", branch = "dev", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.11.1", path = "../tauri-runtime" }
tauri-utils = { version = "1.1.1", path = "../tauri-utils" }
tauri-runtime = { version = "0.12.0", path = "../tauri-runtime" }
tauri-utils = { version = "1.2.0", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
raw-window-handle = "0.5"
Expand Down
10 changes: 10 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog

## \[0.12.0]

- Added `Runtime::show()`, `RuntimeHandle::show()`, `Runtime::hide()`, `RuntimeHandle::hide()` for hiding/showing the entire application on macOS.
- [39bf895b](https://www.github.com/tauri-apps/tauri/commit/39bf895b73ec6b53f5758815396ba85dda6b9c67) feat(macOS): Add application `show` and `hide` methods ([#3689](https://www.github.com/tauri-apps/tauri/pull/3689)) on 2022-10-03
- - [7d9aa398](https://www.github.com/tauri-apps/tauri/commit/7d9aa3987efce2d697179ffc33646d086c68030c) feat: bump MSRV to 1.59 ([#5296](https://www.github.com/tauri-apps/tauri/pull/5296)) on 2022-09-28
- Added methods to set the system tray title on macOS.
- [8f1ace77](https://www.github.com/tauri-apps/tauri/commit/8f1ace77956ac3477826ceb059a191e55b3fff93) feat: expose `set_title` for MacOS tray ([#5182](https://www.github.com/tauri-apps/tauri/pull/5182)) on 2022-09-30
- Added the `user_agent` option when creating a window.
- [a6c94119](https://www.github.com/tauri-apps/tauri/commit/a6c94119d8545d509723b147c273ca5edfe3729f) feat(core): expose user_agent to window config ([#5317](https://www.github.com/tauri-apps/tauri/pull/5317)) on 2022-10-02

## \[0.11.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-runtime/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.11.1"
version = "0.12.0"
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.1.1", path = "../tauri-utils" }
tauri-utils = { version = "1.2.0", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"
Expand Down

0 comments on commit a4d21bd

Please sign in to comment.