Apply Version Updates From Current Changes (#748)

Co-authored-by: lucasfernog <lucas@tauri.studio>
This commit is contained in:
github-actions[bot] 2020-07-06 10:37:03 -03:00 committed by GitHub
parent 6301df660a
commit fa720d5016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 18 additions and 21 deletions

View File

@ -1,6 +0,0 @@
---
"tauri.js": patch
---
Transpile the TS API to ES5.
Expose CJS as .js and ESM as .mjs.

View File

@ -1,6 +0,0 @@
---
"tauri.js": patch
"tauri": patch
---
Fixes the assets embedding into the binary.

View File

@ -1,5 +0,0 @@
---
"tauri-bundler": patch
---
Improves the logging of child processes like `bundle_appimage.sh` and `bundle_dmg.sh`.

View File

@ -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.

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "0.8.0"
version = "0.8.1"
authors = [
"George Burton <burtonageo@gmail.com>",
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",

View File

@ -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.
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.

View File

@ -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"

View File

@ -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<T> where T: impl Serialize.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "0.7.0"
version = "0.7.1"
authors = [
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
"Daniel Thompson-Yvetot <denjell@sfosc.org>",