mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 20:48:52 +03:00
Apply Version Updates From Current Changes (#2069)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
parent
ee60e42422
commit
3806b88ee1
@ -22,6 +22,7 @@
|
||||
".changes/app-handle-create-window.md",
|
||||
".changes/app-handle.md",
|
||||
".changes/app-state.md",
|
||||
".changes/asset-protocol.md",
|
||||
".changes/assets-refactor.md",
|
||||
".changes/async-commands.md",
|
||||
".changes/attohttpc-default-client.md",
|
||||
@ -94,25 +95,31 @@
|
||||
".changes/fix-attribute-drag-region.md",
|
||||
".changes/fix-before-dev-command-kill.md",
|
||||
".changes/fix-bundle-targets-config.md",
|
||||
".changes/fix-bundler-platform-detection.md",
|
||||
".changes/fix-cli-target-set.md",
|
||||
".changes/fix-cli.rs-bundle-arg.md",
|
||||
".changes/fix-command-event-channel.md",
|
||||
".changes/fix-command-named-cmd.md",
|
||||
".changes/fix-dialog-allowlist..md",
|
||||
".changes/fix-dmg-volume-icon.md",
|
||||
".changes/fix-drag-and-drop.md",
|
||||
".changes/fix-http-binary-response.md",
|
||||
".changes/fix-http-resolve-error.md",
|
||||
".changes/fix-javascript-iife-esm-rewrite.md",
|
||||
".changes/fix-notifications-on-windows.md",
|
||||
".changes/fix-reqwest-headers.md",
|
||||
".changes/fix-window-events.md",
|
||||
".changes/fix-window-get-all.md",
|
||||
".changes/fix-window-getter-deadlock.md",
|
||||
".changes/fix-windows-info-cmd.md",
|
||||
".changes/fix-wix-resources.md",
|
||||
".changes/focus.md",
|
||||
".changes/global-shortcut-refactor.md",
|
||||
".changes/hide-phf.md",
|
||||
".changes/hotkey-0.1.2.md",
|
||||
".changes/icon-png-support.md",
|
||||
".changes/internal-default-args.md",
|
||||
".changes/invoke-key-performance.md",
|
||||
".changes/is-decorated.md",
|
||||
".changes/is-resizable.md",
|
||||
".changes/is-visible.md",
|
||||
@ -169,8 +176,10 @@
|
||||
".changes/window-create-refactor.md",
|
||||
".changes/window-events.md",
|
||||
".changes/window-getters.md",
|
||||
".changes/window-label-unique.md",
|
||||
".changes/window-parent-and-owner.md",
|
||||
".changes/window-parent.md",
|
||||
".changes/window-send-sync.md",
|
||||
".changes/windows-resources-set-values.md",
|
||||
".changes/windows-shortcut.md",
|
||||
".changes/wix-bundle-language.md",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.2]
|
||||
|
||||
- Detect ESM scripts and inject the invoke key directly instead of using an IIFE.
|
||||
- Bumped due to a bump in tauri-codegen.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
- Improve invoke key code injection performance time rewriting code at compile time.
|
||||
- Bumped due to a bump in tauri-codegen.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
|
||||
## \[1.0.0-beta.1]
|
||||
|
||||
- Pull Windows resource information (`FileVersion`, `ProductVersion`, `ProductName` and `FileDescription`) from `tauri.conf.json > package` configuration.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-build"
|
||||
version = "1.0.0-beta.1"
|
||||
version = "1.0.0-beta.2"
|
||||
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" ]
|
||||
anyhow = "1"
|
||||
proc-macro2 = "1"
|
||||
quote = "1"
|
||||
tauri-codegen = { version = "1.0.0-beta.1", path = "../tauri-codegen", optional = true }
|
||||
tauri-codegen = { version = "1.0.0-beta.2", path = "../tauri-codegen", optional = true }
|
||||
|
||||
[target."cfg(windows)".dependencies]
|
||||
winres = "0.1"
|
||||
|
@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.2]
|
||||
|
||||
- Detect ESM scripts and inject the invoke key directly instead of using an IIFE.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
- Improve invoke key code injection performance time rewriting code at compile time.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
|
||||
## \[1.0.0-beta.1]
|
||||
|
||||
- Allow `dev_path` and `dist_dir` to be an array of root files and directories to embed.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-codegen"
|
||||
version = "1.0.0-beta.1"
|
||||
version = "1.0.0-beta.2"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.3]
|
||||
|
||||
- Detect ESM scripts and inject the invoke key directly instead of using an IIFE.
|
||||
- Bumped due to a bump in tauri-codegen.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
- Improve invoke key code injection performance time rewriting code at compile time.
|
||||
- Bumped due to a bump in tauri-codegen.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
|
||||
## \[1.0.0-beta.2]
|
||||
|
||||
- internal: Refactor all macro code that expects specific bindings to be passed Idents
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-macros"
|
||||
version = "1.0.0-beta.2"
|
||||
version = "1.0.0-beta.3"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "os", "filesystem", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -18,7 +18,7 @@ proc-macro = true
|
||||
proc-macro2 = "1"
|
||||
quote = "1"
|
||||
syn = { version = "1", features = [ "full" ] }
|
||||
tauri-codegen = { version = "1.0.0-beta.1", path = "../tauri-codegen" }
|
||||
tauri-codegen = { version = "1.0.0-beta.2", path = "../tauri-codegen" }
|
||||
|
||||
[features]
|
||||
custom-protocol = [ ]
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[0.1.3]
|
||||
|
||||
- `Window` is now `Send + Sync` on Windows.
|
||||
- [fe32afcc](https://www.github.com/tauri-apps/tauri/commit/fe32afcc933920d6282ae1d63b041b182278a031) fix(core): `Window` must be `Send + Sync` on Windows, closes [#2078](https://www.github.com/tauri-apps/tauri/pull/2078) ([#2093](https://www.github.com/tauri-apps/tauri/pull/2093)) on 2021-06-27
|
||||
|
||||
## \[0.1.2]
|
||||
|
||||
- Adds `clipboard` APIs (write and read text).
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-runtime-wry"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -13,7 +13,7 @@ readme = "README.md"
|
||||
|
||||
[dependencies]
|
||||
wry = { version = "0.10", default-features = false, features = [ "file-drop", "protocol", "win32" ] }
|
||||
tauri-runtime = { version = "0.1.2", path = "../tauri-runtime" }
|
||||
tauri-runtime = { version = "0.1.3", path = "../tauri-runtime" }
|
||||
tauri-utils = { version = "1.0.0-beta.1", path = "../tauri-utils" }
|
||||
uuid = { version = "0.8.2", features = [ "v4" ] }
|
||||
infer = "0.4"
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[0.1.3]
|
||||
|
||||
- `Window` is now `Send + Sync` on Windows.
|
||||
- [fe32afcc](https://www.github.com/tauri-apps/tauri/commit/fe32afcc933920d6282ae1d63b041b182278a031) fix(core): `Window` must be `Send + Sync` on Windows, closes [#2078](https://www.github.com/tauri-apps/tauri/pull/2078) ([#2093](https://www.github.com/tauri-apps/tauri/pull/2093)) on 2021-06-27
|
||||
|
||||
## \[0.1.2]
|
||||
|
||||
- Adds `clipboard` APIs (write and read text).
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-runtime"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
|
@ -1,5 +1,18 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.3]
|
||||
|
||||
- Fixes `api::process::Command` events not firing consistently.
|
||||
- [8c13344f](https://www.github.com/tauri-apps/tauri/commit/8c13344f8f97bc67b8fcde68ce14da438f7c66ba) fix(core): command events not firing consistently ([#2082](https://www.github.com/tauri-apps/tauri/pull/2082)) on 2021-06-27
|
||||
- Detect ESM scripts and inject the invoke key directly instead of using an IIFE.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
- Improve invoke key code injection performance time rewriting code at compile time.
|
||||
- [7765c7fa](https://www.github.com/tauri-apps/tauri/commit/7765c7fa281853ddfb26b6b17534df95eaede804) fix(core): invoke key injection on ES module, improve performance ([#2094](https://www.github.com/tauri-apps/tauri/pull/2094)) on 2021-06-27
|
||||
- Enfore uniqueness of window label.
|
||||
- [d18b5367](https://www.github.com/tauri-apps/tauri/commit/d18b5367a91fd53d408510b456897630c70abcca) feat(core): enfore label uniqueness, closes [#2067](https://www.github.com/tauri-apps/tauri/pull/2067) ([#2097](https://www.github.com/tauri-apps/tauri/pull/2097)) on 2021-06-27
|
||||
- `Window` is now `Send + Sync` on Windows.
|
||||
- [fe32afcc](https://www.github.com/tauri-apps/tauri/commit/fe32afcc933920d6282ae1d63b041b182278a031) fix(core): `Window` must be `Send + Sync` on Windows, closes [#2078](https://www.github.com/tauri-apps/tauri/pull/2078) ([#2093](https://www.github.com/tauri-apps/tauri/pull/2093)) on 2021-06-27
|
||||
|
||||
## \[1.0.0-beta.2]
|
||||
|
||||
- Remove anonymous lifetimes on examples.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri"
|
||||
version = "1.0.0-beta.2"
|
||||
version = "1.0.0-beta.3"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -38,10 +38,10 @@ futures = "0.3"
|
||||
uuid = { version = "0.8", features = [ "v4" ] }
|
||||
thiserror = "1.0"
|
||||
once_cell = "1.8"
|
||||
tauri-runtime = { version = "0.1.2", path = "../tauri-runtime" }
|
||||
tauri-macros = { version = "1.0.0-beta.2", path = "../tauri-macros" }
|
||||
tauri-runtime = { version = "0.1.3", path = "../tauri-runtime" }
|
||||
tauri-macros = { version = "1.0.0-beta.3", path = "../tauri-macros" }
|
||||
tauri-utils = { version = "1.0.0-beta.1", path = "../tauri-utils" }
|
||||
tauri-runtime-wry = { version = "0.1.2", path = "../tauri-runtime-wry", optional = true }
|
||||
tauri-runtime-wry = { version = "0.1.3", path = "../tauri-runtime-wry", optional = true }
|
||||
rand = "0.8"
|
||||
tempfile = "3"
|
||||
semver = "1.0"
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.4]
|
||||
|
||||
- Add asset custom protocol to access local file system.
|
||||
- [ee60e424](https://www.github.com/tauri-apps/tauri/commit/ee60e424221559d3d725716b0003c5566ef2b5cd) feat: asset custom protocol to access local file system ([#2104](https://www.github.com/tauri-apps/tauri/pull/2104)) on 2021-06-28
|
||||
|
||||
## \[1.0.0-beta.3]
|
||||
|
||||
- Export `Response` and `ResponseType` as value instead of type.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tauri-apps/api",
|
||||
"version": "1.0.0-beta.3",
|
||||
"version": "1.0.0-beta.4",
|
||||
"description": "Tauri API definitions",
|
||||
"type": "module",
|
||||
"funding": {
|
||||
|
@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.2]
|
||||
|
||||
- Properly detect target platform's architecture.
|
||||
- [628a53eb](https://www.github.com/tauri-apps/tauri/commit/628a53eb6176f811d22d7730f08a99e5c370dbf4) fix(cli): properly detect target architecture, closes [#2040](https://www.github.com/tauri-apps/tauri/pull/2040) ([#2102](https://www.github.com/tauri-apps/tauri/pull/2102)) on 2021-06-28
|
||||
- Properly bundle resources with nested folder structure.
|
||||
- [a6157212](https://www.github.com/tauri-apps/tauri/commit/a61572127df839ed23e34e9b49b2bada5f18f7fb) fix(bundler): resources bundling on Windows with nested folder structure ([#2081](https://www.github.com/tauri-apps/tauri/pull/2081)) on 2021-06-25
|
||||
|
||||
## \[1.0.0-beta.1]
|
||||
|
||||
- The process of copying binaries and resources to `project_out_directory` was moved to the Tauri CLI.
|
||||
|
@ -2,7 +2,7 @@ workspace = { }
|
||||
|
||||
[package]
|
||||
name = "tauri-bundler"
|
||||
version = "1.0.0-beta.1"
|
||||
version = "1.0.0-beta.2"
|
||||
authors = [
|
||||
"George Burton <burtonageo@gmail.com>",
|
||||
"Tauri Programme within The Commons Conservancy"
|
||||
|
@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.4]
|
||||
|
||||
- Properly detect target platform's architecture.
|
||||
- Bumped due to a bump in cli.rs.
|
||||
- [628a53eb](https://www.github.com/tauri-apps/tauri/commit/628a53eb6176f811d22d7730f08a99e5c370dbf4) fix(cli): properly detect target architecture, closes [#2040](https://www.github.com/tauri-apps/tauri/pull/2040) ([#2102](https://www.github.com/tauri-apps/tauri/pull/2102)) on 2021-06-28
|
||||
- Fixes `build` command when the `target` arg is set.
|
||||
- Bumped due to a bump in cli.rs.
|
||||
- [8e238701](https://www.github.com/tauri-apps/tauri/commit/8e2387018940e9e1421948d74a82156661ce2e4b) fix(cli.rs): fix out dir detection when target arg is set, closes [#2040](https://www.github.com/tauri-apps/tauri/pull/2040) ([#2098](https://www.github.com/tauri-apps/tauri/pull/2098)) on 2021-06-27
|
||||
|
||||
## \[1.0.0-beta.3]
|
||||
|
||||
- Allow empty argument when running `cli.rs`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tauri-apps/cli",
|
||||
"version": "1.0.0-beta.3",
|
||||
"version": "1.0.0-beta.4",
|
||||
"description": "Command line interface for building Tauri apps",
|
||||
"bin": {
|
||||
"tauri": "./bin/tauri.js"
|
||||
|
@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.3]
|
||||
|
||||
- Properly detect target platform's architecture.
|
||||
- [628a53eb](https://www.github.com/tauri-apps/tauri/commit/628a53eb6176f811d22d7730f08a99e5c370dbf4) fix(cli): properly detect target architecture, closes [#2040](https://www.github.com/tauri-apps/tauri/pull/2040) ([#2102](https://www.github.com/tauri-apps/tauri/pull/2102)) on 2021-06-28
|
||||
- Fixes `build` command when the `target` arg is set.
|
||||
- [8e238701](https://www.github.com/tauri-apps/tauri/commit/8e2387018940e9e1421948d74a82156661ce2e4b) fix(cli.rs): fix out dir detection when target arg is set, closes [#2040](https://www.github.com/tauri-apps/tauri/pull/2040) ([#2098](https://www.github.com/tauri-apps/tauri/pull/2098)) on 2021-06-27
|
||||
|
||||
## \[1.0.0-beta.2]
|
||||
|
||||
- Support `cargo tauri build` on Apple M1 chip.
|
||||
|
4
tooling/cli.rs/Cargo.lock
generated
4
tooling/cli.rs/Cargo.lock
generated
@ -1881,7 +1881,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-bundler"
|
||||
version = "1.0.0-beta.1"
|
||||
version = "1.0.0-beta.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"ar",
|
||||
@ -1914,7 +1914,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-beta.2"
|
||||
version = "1.0.0-beta.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64",
|
||||
|
@ -2,7 +2,7 @@ workspace = { }
|
||||
|
||||
[package]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-beta.2"
|
||||
version = "1.0.0-beta.3"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
edition = "2018"
|
||||
categories = [ "gui", "web-programming" ]
|
||||
@ -19,7 +19,7 @@ path = "src/main.rs"
|
||||
[dependencies]
|
||||
clap = { version = "3.0.0-beta.2", features = [ "yaml" ] }
|
||||
anyhow = "1.0"
|
||||
tauri-bundler = { version = "1.0.0-beta.1", path = "../bundler" }
|
||||
tauri-bundler = { version = "1.0.0-beta.2", path = "../bundler" }
|
||||
colored = "2.0"
|
||||
once_cell = "1.8"
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"cli.js": {
|
||||
"version": "1.0.0-beta.3",
|
||||
"version": "1.0.0-beta.4",
|
||||
"node": ">= 12.13.0"
|
||||
},
|
||||
"tauri": "1.0.0-beta.2",
|
||||
"tauri-build": "1.0.0-beta.1"
|
||||
"tauri": "1.0.0-beta.3",
|
||||
"tauri-build": "1.0.0-beta.2"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user