From c3e5a18f431b5f4e696bc4bbed1ddea84325b44c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2020 09:11:16 -0500 Subject: [PATCH] Apply Version Updates From Current Changes (#786) * apply version updates * Update tauri/CHANGELOG.md Co-authored-by: jbolda --- .changes/fix-template.md | 6 ------ .changes/tauri-conf-changes.md | 5 ----- .changes/tauri-icon.md | 5 ----- cli/tauri.js/CHANGELOG.md | 6 ++++++ cli/tauri.js/package.json | 2 +- tauri-api/CHANGELOG.md | 4 ++++ tauri-api/Cargo.toml | 2 +- tauri/CHANGELOG.md | 6 +++++- tauri/Cargo.toml | 2 +- 9 files changed, 18 insertions(+), 20 deletions(-) delete mode 100644 .changes/fix-template.md delete mode 100644 .changes/tauri-conf-changes.md delete mode 100644 .changes/tauri-icon.md diff --git a/.changes/fix-template.md b/.changes/fix-template.md deleted file mode 100644 index 17f320a70..000000000 --- a/.changes/fix-template.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tauri.js": patch ---- - -Fixes the wrong `cli` value on the template that's used by `tauri init`. -Also fixes the template test. diff --git a/.changes/tauri-conf-changes.md b/.changes/tauri-conf-changes.md deleted file mode 100644 index c858e87d0..000000000 --- a/.changes/tauri-conf-changes.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-api": patch ---- - -Fixes the config reloading when tauri.conf.json changes. diff --git a/.changes/tauri-icon.md b/.changes/tauri-icon.md deleted file mode 100644 index 14d6b6493..000000000 --- a/.changes/tauri-icon.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri.js": patch ---- - -Fixes the `tauri icon` usage with the `--icon` flag. Previously, only the `-i` flag worked. diff --git a/cli/tauri.js/CHANGELOG.md b/cli/tauri.js/CHANGELOG.md index 591e27f47..fb8d7e383 100644 --- a/cli/tauri.js/CHANGELOG.md +++ b/cli/tauri.js/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.8.3] + +- Fixes the wrong cli value on the template that's used by tauri init. + Also fixes the template test. +- Fixes the tauri icon usage with the --icon flag. Previously, only the -i flag worked. + ## [0.8.2] - Adds tauri.conf.json schema validation to the CLI. diff --git a/cli/tauri.js/package.json b/cli/tauri.js/package.json index 2fd6fbd59..7427ee60f 100644 --- a/cli/tauri.js/package.json +++ b/cli/tauri.js/package.json @@ -1,6 +1,6 @@ { "name": "tauri", - "version": "0.8.2", + "version": "0.8.3", "description": "Multi-binding collection of libraries and templates for building Tauri apps", "bin": { "tauri": "./bin/tauri.js" diff --git a/tauri-api/CHANGELOG.md b/tauri-api/CHANGELOG.md index 0ecb48567..83ce43506 100644 --- a/tauri-api/CHANGELOG.md +++ b/tauri-api/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.7.1] + +- Fixes the config reloading when tauri.conf.json changes. + ## [0.7.0] - The execute_promise and execute_promise_sync helpers now accepts any tauri::Result where T: impl Serialize. diff --git a/tauri-api/Cargo.toml b/tauri-api/Cargo.toml index bf247f807..a47dbe6dc 100644 --- a/tauri-api/Cargo.toml +++ b/tauri-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-api" -version = "0.7.0" +version = "0.7.1" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ", diff --git a/tauri/CHANGELOG.md b/tauri/CHANGELOG.md index 8e4700470..b951b59f8 100644 --- a/tauri/CHANGELOG.md +++ b/tauri/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.7.2] + +Bumped due to dependency. + ## [0.7.1] - Fixes the assets embedding into the binary. @@ -14,7 +18,7 @@ - Fixes the Windows build with the latest Windows SDK. -## [0.6.1] (Not Published) +## [0.6.1] - (Not Published) ## [0.6.0] diff --git a/tauri/Cargo.toml b/tauri/Cargo.toml index c6a4f7509..228b735f8 100644 --- a/tauri/Cargo.toml +++ b/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "0.7.1" +version = "0.7.2" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ",