diff --git a/.changes/api-transpile.md b/.changes/api-transpile.md deleted file mode 100644 index 98464b207..000000000 --- a/.changes/api-transpile.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tauri.js": patch ---- - -Transpile the TS API to ES5. -Expose CJS as .js and ESM as .mjs. diff --git a/.changes/assets-fix.md b/.changes/assets-fix.md deleted file mode 100644 index e3e0dc6a2..000000000 --- a/.changes/assets-fix.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tauri.js": patch -"tauri": patch ---- - -Fixes the assets embedding into the binary. diff --git a/.changes/bundler-log-improvement.md b/.changes/bundler-log-improvement.md deleted file mode 100644 index 956ae7d7b..000000000 --- a/.changes/bundler-log-improvement.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-bundler": patch ---- - -Improves the logging of child processes like `bundle_appimage.sh` and `bundle_dmg.sh`. diff --git a/cli/tauri-bundler/CHANGELOG.md b/cli/tauri-bundler/CHANGELOG.md index 49bbd4947..3ea362a5e 100644 --- a/cli/tauri-bundler/CHANGELOG.md +++ b/cli/tauri-bundler/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.8.1] + +- Improves the logging of child processes like bundle_appimage.sh and bundle_dmg.sh. + ## [0.8.0] - The bundler now bundles all binaries from your project (undefined) and undefined. diff --git a/cli/tauri-bundler/Cargo.toml b/cli/tauri-bundler/Cargo.toml index 81a63fcfe..ab61ca329 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.0" +version = "0.8.1" authors = [ "George Burton ", "Lucas Fernandes Gonçalves Nogueira ", diff --git a/cli/tauri.js/CHANGELOG.md b/cli/tauri.js/CHANGELOG.md index ea0c39b60..e24b102ca 100644 --- a/cli/tauri.js/CHANGELOG.md +++ b/cli/tauri.js/CHANGELOG.md @@ -1,8 +1,14 @@ # Changelog +## [0.8.1] + +- Transpile the TS API to ES5. + Expose CJS as .js and ESM as .mjs. +- Fixes the assets embedding into the binary. + ## [0.8.0] - Create UMD, ESM and CJS artifacts for the JavaScript API entry point from TS source using rollup. - Renaming window.tauri to window.\_\_TAURI\_\_, closing #435. The **Tauri** object now follows the TypeScript API structure (e.g. window.tauri.readTextFile is now window.\_\_TAURI\_\_.fs.readTextFile). - If you want to keep the `window.tauri` object for a while, you can add a [mapping object](https://gist.github.com/lucasfernog/8f7b29cadd91d92ee2cf816a20c2ef01) to your code. \ No newline at end of file + If you want to keep the `window.tauri` object for a while, you can add a [mapping object](https://gist.github.com/lucasfernog/8f7b29cadd91d92ee2cf816a20c2ef01) to your code. diff --git a/cli/tauri.js/package.json b/cli/tauri.js/package.json index 13ccec874..0d9fc5521 100644 --- a/cli/tauri.js/package.json +++ b/cli/tauri.js/package.json @@ -1,6 +1,6 @@ { "name": "tauri", - "version": "0.8.0", + "version": "0.8.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 02678102d..36759ff71 100644 --- a/tauri/CHANGELOG.md +++ b/tauri/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.7.1] + +- Fixes the assets embedding into the binary. + ## [0.7.0] - The execute_promise and execute_promise_sync helpers now accepts any tauri::Result where T: impl Serialize. diff --git a/tauri/Cargo.toml b/tauri/Cargo.toml index 0ad05d089..c6a4f7509 100644 --- a/tauri/Cargo.toml +++ b/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "0.7.0" +version = "0.7.1" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ",