浏览代码

Apply Version Updates From Current Changes (#1620)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
github-actions[bot] 4 年之前
父节点
当前提交
0f86bc4071

+ 2 - 0
.changes/pre.json

@@ -22,6 +22,7 @@
     ".changes/fix-cta-set-script.md",
     ".changes/fix-info-npm-version.md",
     ".changes/fix-js-api-import.md",
+    ".changes/fix-plugin-invoke.md",
     ".changes/invoke-context.md",
     ".changes/macos-custom-protocol-https.md",
     ".changes/macos-modifiers.md",
@@ -29,6 +30,7 @@
     ".changes/nested-events.md",
     ".changes/node-v12.md",
     ".changes/not-a-terminal-windows-fix.md",
+    ".changes/package-info-config.md",
     ".changes/plugin-initialization-result.md",
     ".changes/sidecar-fix.md",
     ".changes/supports-custom-template.md",

+ 7 - 0
core/tauri-build/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- The package info APIs now checks the `package` object on `tauri.conf.json`.
+  - Bumped due to a bump in tauri-codegen.
+  - [8fd1baf](https://www.github.com/tauri-apps/tauri/commit/8fd1baf69b14bb81d7be9d31605ed7f02058b392) fix(core): pull package info from tauri.conf.json if set ([#1581](https://www.github.com/tauri-apps/tauri/pull/1581)) on 2021-04-22
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+
 ## \[1.0.0-beta-rc.0]
 
 - Update all code files to have our license header.

+ 2 - 2
core/tauri-build/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-build"
-version = "1.0.0-beta-rc.0"
+version = "1.0.0-beta-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -17,7 +17,7 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
 anyhow = "1"
 proc-macro2 = "1"
 quote = "1"
-tauri-codegen = { version = "1.0.0-beta-rc.0", path = "../tauri-codegen", optional = true }
+tauri-codegen = { version = "1.0.0-beta-rc.1", path = "../tauri-codegen", optional = true }
 
 [target."cfg(windows)".dependencies]
 winres = "0.1"

+ 6 - 0
core/tauri-codegen/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- The package info APIs now checks the `package` object on `tauri.conf.json`.
+  - [8fd1baf](https://www.github.com/tauri-apps/tauri/commit/8fd1baf69b14bb81d7be9d31605ed7f02058b392) fix(core): pull package info from tauri.conf.json if set ([#1581](https://www.github.com/tauri-apps/tauri/pull/1581)) on 2021-04-22
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+
 ## \[1.0.0-beta-rc.0]
 
 - Update all code files to have our license header.

+ 2 - 2
core/tauri-codegen/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-codegen"
-version = "1.0.0-beta-rc.0"
+version = "1.0.0-beta-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -15,7 +15,7 @@ proc-macro2 = "1"
 quote = "1"
 serde = { version = "1", features = [ "derive" ] }
 serde_json = "1"
-tauri-utils = { version = "1.0.0-beta-rc.0", path = "../tauri-utils", features = [ "build" ] }
+tauri-utils = { version = "1.0.0-beta-rc.1", path = "../tauri-utils", features = [ "build" ] }
 thiserror = "1"
 walkdir = "2"
 zstd = "0.7"

+ 6 - 0
core/tauri-macros/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- Fixes the Message `command` name value on plugin invoke handler.
+  - [422dd5e](https://www.github.com/tauri-apps/tauri/commit/422dd5e2a0a03bb1556915c78f110bfab092c874) fix(core): command name on plugin invoke handler ([#1577](https://www.github.com/tauri-apps/tauri/pull/1577)) on 2021-04-21
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+
 ## \[1.0.0-beta-rc.0]
 
 - Update all code files to have our license header.

+ 2 - 2
core/tauri-macros/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-macros"
-version = "1.0.0-beta-rc.0"
+version = "1.0.0-beta-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "os", "filesystem", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -16,7 +16,7 @@ proc-macro = true
 proc-macro2 = "1"
 quote = "1"
 syn = { version = "1", features = [ "full" ] }
-tauri-codegen = { version = "1.0.0-beta-rc.0", path = "../tauri-codegen" }
+tauri-codegen = { version = "1.0.0-beta-rc.1", path = "../tauri-codegen" }
 
 [features]
 custom-protocol = [ ]

+ 6 - 0
core/tauri-utils/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-beta-rc.1]
+
+- The package info APIs now checks the `package` object on `tauri.conf.json`.
+  - [8fd1baf](https://www.github.com/tauri-apps/tauri/commit/8fd1baf69b14bb81d7be9d31605ed7f02058b392) fix(core): pull package info from tauri.conf.json if set ([#1581](https://www.github.com/tauri-apps/tauri/pull/1581)) on 2021-04-22
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+
 ## \[1.0.0-beta-rc.0]
 
 - The Tauri files are now read on the app space instead of the `tauri` create.

+ 1 - 1
core/tauri-utils/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-utils"
-version = "1.0.0-beta-rc.0"
+version = "1.0.0-beta-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 license = "Apache-2.0 OR MIT"
 homepage = "https://tauri.studio"

+ 4 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,9 @@
 # Changelog
 
+## \[1.0.0-beta-rc.4]
+
+- Update `tauri-macros` and `tauri-utils` to `1.0.0-beta-rc.1`.
+
 ## \[1.0.0-beta-rc.3]
 
 - `tauri::error::CreateWebview` now has the error string message attached.

+ 3 - 3
core/tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "1.0.0-beta-rc.3"
+version = "1.0.0-beta-rc.4"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"
@@ -22,8 +22,8 @@ futures = "0.3"
 uuid = { version = "0.8.2", features = [ "v4" ] }
 thiserror = "1.0.24"
 once_cell = "1.7.2"
-tauri-macros = { version = "1.0.0-beta-rc.0", path = "../tauri-macros" }
-tauri-utils = { version = "1.0.0-beta-rc.0", path = "../tauri-utils" }
+tauri-macros = { version = "1.0.0-beta-rc.1", path = "../tauri-macros" }
+tauri-utils = { version = "1.0.0-beta-rc.1", path = "../tauri-utils" }
 wry = "0.8"
 rand = "0.8"
 reqwest = { version = "0.11", features = [ "json", "multipart" ] }

+ 11 - 0
tooling/cli.js/CHANGELOG.md

@@ -1,5 +1,16 @@
 # Changelog
 
+## \[1.0.0-beta-rc.4]
+
+- Fixes the Message `command` name value on plugin invoke handler.
+  - Bumped due to a bump in cli.rs.
+  - [422dd5e](https://www.github.com/tauri-apps/tauri/commit/422dd5e2a0a03bb1556915c78f110bfab092c874) fix(core): command name on plugin invoke handler ([#1577](https://www.github.com/tauri-apps/tauri/pull/1577)) on 2021-04-21
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+- The package info APIs now checks the `package` object on `tauri.conf.json`.
+  - Bumped due to a bump in cli.rs.
+  - [8fd1baf](https://www.github.com/tauri-apps/tauri/commit/8fd1baf69b14bb81d7be9d31605ed7f02058b392) fix(core): pull package info from tauri.conf.json if set ([#1581](https://www.github.com/tauri-apps/tauri/pull/1581)) on 2021-04-22
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+
 ## \[1.0.0-beta-rc.3]
 
 - Remove Rust CLI download file if the download fails or the prpocess is killed.

+ 1 - 1
tooling/cli.js/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "1.0.0-beta-rc.3",
+  "version": "1.0.0-beta-rc.4",
   "description": "Command line interface for building Tauri apps",
   "bin": {
     "tauri": "./bin/tauri.js"

+ 11 - 0
tooling/cli.rs/CHANGELOG.md

@@ -1,5 +1,16 @@
 # Changelog
 
+## \[1.0.0-beta-rc.4]
+
+- Fixes the Message `command` name value on plugin invoke handler.
+  - Bumped due to a bump in tauri.
+  - [422dd5e](https://www.github.com/tauri-apps/tauri/commit/422dd5e2a0a03bb1556915c78f110bfab092c874) fix(core): command name on plugin invoke handler ([#1577](https://www.github.com/tauri-apps/tauri/pull/1577)) on 2021-04-21
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+- The package info APIs now checks the `package` object on `tauri.conf.json`.
+  - Bumped due to a bump in tauri.
+  - [8fd1baf](https://www.github.com/tauri-apps/tauri/commit/8fd1baf69b14bb81d7be9d31605ed7f02058b392) fix(core): pull package info from tauri.conf.json if set ([#1581](https://www.github.com/tauri-apps/tauri/pull/1581)) on 2021-04-22
+  - [f575aaa](https://www.github.com/tauri-apps/tauri/commit/f575aaad71f23d44b2f89cf9ee5d84817dc3bb7a) fix: change files not referencing core packages ([#1619](https://www.github.com/tauri-apps/tauri/pull/1619)) on 2021-04-25
+
 ## \[1.0.0-beta-rc.3]
 
 - Check if distDir assets are built after running `beforeDevCommand`.

+ 1 - 1
tooling/cli.rs/Cargo.lock

@@ -1923,7 +1923,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "1.0.0-beta-rc.3"
+version = "1.0.0-beta-rc.4"
 dependencies = [
  "anyhow",
  "base64",

+ 1 - 1
tooling/cli.rs/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-cli"
-version = "1.0.0-beta-rc.3"
+version = "1.0.0-beta-rc.4"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2018"
 categories = [ "gui", "web-programming" ]

+ 3 - 3
tooling/cli.rs/metadata.json

@@ -1,8 +1,8 @@
 {
   "cli.js": {
-    "version": "1.0.0-beta-rc.3",
+    "version": "1.0.0-beta-rc.4",
     "node": ">= 12.13.0"
   },
-  "tauri": "1.0.0-beta-rc.3",
-  "tauri-build": "1.0.0-beta-rc.0"
+  "tauri": "1.0.0-beta-rc.4",
+  "tauri-build": "1.0.0-beta-rc.1"
 }