diff --git a/.changes/bump-lodash.md b/.changes/bump-lodash.md deleted file mode 100644 index 3c88f473d..000000000 --- a/.changes/bump-lodash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri.js": patch ---- - -Bump `lodash` to 4.17.19 diff --git a/.changes/loopback.md b/.changes/loopback.md deleted file mode 100644 index edd0b2afe..000000000 --- a/.changes/loopback.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tauri": patch -"tauri-bundler": patch ---- - -Properly run the loopback command on Windows. diff --git a/.changes/tauri-includedir-fix.md b/.changes/tauri-includedir-fix.md deleted file mode 100644 index 79d772b92..000000000 --- a/.changes/tauri-includedir-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": patch ---- - -Properly ignore the `${distDir}/index.html` asset from the asset embbeding. Previously every asset with name matching `/(.+)index.html$/g` were ignored. diff --git a/cli/tauri-bundler/CHANGELOG.md b/cli/tauri-bundler/CHANGELOG.md index ec1d2a150..c86b82cb1 100644 --- a/cli/tauri-bundler/CHANGELOG.md +++ b/cli/tauri-bundler/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.8.4] + +- Properly run the loopback command on Windows. + ## [0.8.3] - Fixes the unbound variable issue on the DMG bundler script. diff --git a/cli/tauri-bundler/Cargo.toml b/cli/tauri-bundler/Cargo.toml index 3977d6c16..f6e34e7d6 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.3" +version = "0.8.4" authors = [ "George Burton ", "Lucas Fernandes Gonçalves Nogueira ", diff --git a/cli/tauri.js/CHANGELOG.md b/cli/tauri.js/CHANGELOG.md index fb8d7e383..702ed3751 100644 --- a/cli/tauri.js/CHANGELOG.md +++ b/cli/tauri.js/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.8.4] + +- Bump lodash to 4.17.19 + ## [0.8.3] - Fixes the wrong cli value on the template that's used by tauri init. diff --git a/cli/tauri.js/package.json b/cli/tauri.js/package.json index 6f18e7bbd..a4da2c824 100644 --- a/cli/tauri.js/package.json +++ b/cli/tauri.js/package.json @@ -1,6 +1,6 @@ { "name": "tauri", - "version": "0.8.3", + "version": "0.8.4", "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 b951b59f8..de48201ed 100644 --- a/tauri/CHANGELOG.md +++ b/tauri/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.7.3] + +- Properly run the loopback command on Windows. +- Properly ignore the ${distDir}/index.html asset from the asset embbeding. Previously every asset with name matching /(.+)index.html$/g were ignored. + ## [0.7.2] Bumped due to dependency. diff --git a/tauri/Cargo.toml b/tauri/Cargo.toml index c096b2a43..c221e4a43 100644 --- a/tauri/Cargo.toml +++ b/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "0.7.2" +version = "0.7.3" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ", @@ -36,7 +36,6 @@ envmnt = "0.8.3" once_cell = "1.4.0" tauri-api = { version = "0.7", path = "../tauri-api" } -# this is actually only needed on dev, but we can't specify it yet [target."cfg(target_os = \"windows\")".dependencies] runas = "0.2"