From 2b3ef7bcfb6dd3e71dcce9325b1d1f3763d0de6b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2020 22:45:11 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#915) Co-authored-by: jbolda --- .changes/912-unicode-messages.md | 5 ----- .changes/921-fix-cli-args.md | 6 ------ cli/tauri.js/CHANGELOG.md | 5 +++++ cli/tauri.js/package.json | 2 +- tauri/CHANGELOG.md | 6 ++++++ tauri/Cargo.toml | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 .changes/912-unicode-messages.md delete mode 100644 .changes/921-fix-cli-args.md diff --git a/.changes/912-unicode-messages.md b/.changes/912-unicode-messages.md deleted file mode 100644 index 06ad25465..000000000 --- a/.changes/912-unicode-messages.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": patch ---- -Adjust payload formatting to handle multibyte characters in front-end message -payloads. diff --git a/.changes/921-fix-cli-args.md b/.changes/921-fix-cli-args.md deleted file mode 100644 index a015446d4..000000000 --- a/.changes/921-fix-cli-args.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tauri.js": patch ---- - -Fix command line arguments -W (window title) and -P (dev server uri) to work as intended. - diff --git a/cli/tauri.js/CHANGELOG.md b/cli/tauri.js/CHANGELOG.md index 440b54db0..0650d21c3 100644 --- a/cli/tauri.js/CHANGELOG.md +++ b/cli/tauri.js/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.11.1] + +- Fix command line arguments -W (window title) and -P (dev server uri) to work as intended. + - [e1fd626](https://www.github.com/tauri-apps/tauri/commit/e1fd626453bf6310b18e48472aa831c367212290) Fix typos referring to CLI args in init command ([#921](https://www.github.com/tauri-apps/tauri/pull/921)) on 2020-08-03 + ## [0.11.0] - Fixes the Webview initialization on Windows. diff --git a/cli/tauri.js/package.json b/cli/tauri.js/package.json index a9e4927d8..ee0986167 100644 --- a/cli/tauri.js/package.json +++ b/cli/tauri.js/package.json @@ -1,6 +1,6 @@ { "name": "tauri", - "version": "0.11.0", + "version": "0.11.1", "description": "Multi-binding collection of libraries and templates for building Tauri apps", "bin": { "tauri": "./bin/tauri.js" diff --git a/tauri/CHANGELOG.md b/tauri/CHANGELOG.md index 117b34415..15eb5e8eb 100644 --- a/tauri/CHANGELOG.md +++ b/tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.9.1] + +- Adjust payload formatting to handle multibyte characters in front-end message + payloads. + - [df70ca5](https://www.github.com/tauri-apps/tauri/commit/df70ca51965665952a74161cc6eb1ff19eae45e2) Fix [#912](https://www.github.com/tauri-apps/tauri/pull/912) multibyte character breaks message ([#914](https://www.github.com/tauri-apps/tauri/pull/914)) on 2020-08-01 + ## [0.9.0] - Make sure CSS content loaded with the `loadAsset` API is inside a template string and not injected raw. diff --git a/tauri/Cargo.toml b/tauri/Cargo.toml index 49a9e0e82..3e6714ae2 100644 --- a/tauri/Cargo.toml +++ b/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "0.9.0" +version = "0.9.1" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ",