diff --git a/.changes/before-dev-command-race-condition.md b/.changes/before-dev-command-race-condition.md deleted file mode 100644 index fa35635fe..000000000 --- a/.changes/before-dev-command-race-condition.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri.js": patch ---- - -Fixes a race condition on the `beforeDevCommand` usage (starting Tauri before the devServer is ready). diff --git a/.changes/loopback-fix.md b/.changes/loopback-fix.md deleted file mode 100644 index 4944a595d..000000000 --- a/.changes/loopback-fix.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tauri-bundler": patch -"tauri": patch ---- - -Ignoring non UTF-8 characters on the loopback command output. diff --git a/.changes/revert_nullish_coalesce_behavior_change.md b/.changes/revert_nullish_coalesce_behavior_change.md deleted file mode 100644 index f0b702237..000000000 --- a/.changes/revert_nullish_coalesce_behavior_change.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri.js": patch ---- - -Revert a nullish coalescing operator that changed embedded server/inliner behavior. diff --git a/.changes/tauri-init-fix.md b/.changes/tauri-init-fix.md deleted file mode 100644 index e7c668b65..000000000 --- a/.changes/tauri-init-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri.js": patch ---- - -Fixes `tauri init` not generating `tauri.conf.json` on the Vue CLI Plugin. diff --git a/.changes/tauri-init-prompt.md b/.changes/tauri-init-prompt.md deleted file mode 100644 index 03b0e29cb..000000000 --- a/.changes/tauri-init-prompt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri.js": minor ---- - -`tauri init` now prompt for default values such as window title, app name, dist dir and dev path. You can use `--ci` to skip the prompts. diff --git a/cli/tauri-bundler/CHANGELOG.md b/cli/tauri-bundler/CHANGELOG.md index c86b82cb1..0e2baee80 100644 --- a/cli/tauri-bundler/CHANGELOG.md +++ b/cli/tauri-bundler/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.8.5] + +- Ignoring non UTF-8 characters on the loopback command output. + - [f340b29](https://www.github.com/tauri-apps/tauri/commit/f340b2914dc9c3a94ca8606f4663964fa87b95ea) fix(tauri) addition to the previous commit on 2020-07-10 + ## [0.8.4] - Properly run the loopback command on Windows. diff --git a/cli/tauri-bundler/Cargo.toml b/cli/tauri-bundler/Cargo.toml index f6e34e7d6..ebf7fa6da 100644 --- a/cli/tauri-bundler/Cargo.toml +++ b/cli/tauri-bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "0.8.4" +version = "0.8.5" authors = [ "George Burton ", "Lucas Fernandes Gonçalves Nogueira ", diff --git a/cli/tauri.js/CHANGELOG.md b/cli/tauri.js/CHANGELOG.md index 702ed3751..c6c1f59a8 100644 --- a/cli/tauri.js/CHANGELOG.md +++ b/cli/tauri.js/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.9.0] + +- Fixes a race condition on the beforeDevCommand usage (starting Tauri before the devServer is ready). + - [a26cffc](https://www.github.com/tauri-apps/tauri/commit/a26cffc575bee224a6beb5b7b0565d5583c0131f) fix(tauri.js) beforeDevCommand race condition ([#801](https://www.github.com/tauri-apps/tauri/pull/801)) on 2020-07-10 +- Revert a nullish coalescing operator that changed embedded server/inliner behavior. + - [e7b4951](https://www.github.com/tauri-apps/tauri/commit/e7b495133fe9f4e9f576bb9805bec98b967783eb) fix(tauri.js) revert nullish coalesce addition ([#799](https://www.github.com/tauri-apps/tauri/pull/799)) on 2020-07-10 +- Fixes tauri init not generating tauri.conf.json on the Vue CLI Plugin. + - [f208a68](https://www.github.com/tauri-apps/tauri/commit/f208a68e40c804daf41d54539d3a5951679e8a64) fix(tauri.js) do not swallow init errors, fix conf inject ([#802](https://www.github.com/tauri-apps/tauri/pull/802)) on 2020-07-10 +- tauri init now prompt for default values such as window title, app name, dist dir and dev path. You can use --ci to skip the prompts. + - [ee8724b](https://www.github.com/tauri-apps/tauri/commit/ee8724b90a63f281292c6eb174773b905ba52e32) feat(tauri.js/init): prompt for default values (fix [#422](https://www.github.com/tauri-apps/tauri/pull/422)/[#162](https://www.github.com/tauri-apps/tauri/pull/162)) ([#472](https://www.github.com/tauri-apps/tauri/pull/472)) on 2020-07-10 + ## [0.8.4] - Bump lodash to 4.17.19 diff --git a/cli/tauri.js/package.json b/cli/tauri.js/package.json index 5c1f60627..499943829 100644 --- a/cli/tauri.js/package.json +++ b/cli/tauri.js/package.json @@ -1,6 +1,6 @@ { "name": "tauri", - "version": "0.8.4", + "version": "0.9.0", "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 de48201ed..748cc92c9 100644 --- a/tauri/CHANGELOG.md +++ b/tauri/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.7.4] + +- Ignoring non UTF-8 characters on the loopback command output. + - [f340b29](https://www.github.com/tauri-apps/tauri/commit/f340b2914dc9c3a94ca8606f4663964fa87b95ea) fix(tauri) addition to the previous commit on 2020-07-10 + ## [0.7.3] - Properly run the loopback command on Windows. diff --git a/tauri/Cargo.toml b/tauri/Cargo.toml index c221e4a43..ed00c3c58 100644 --- a/tauri/Cargo.toml +++ b/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "0.7.3" +version = "0.7.4" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ",