mirror of
https://github.com/tauri-apps/tauri.git
synced 2025-01-03 16:42:42 +03:00
Apply Version Updates From Current Changes (#748)
Co-authored-by: lucasfernog <lucas@tauri.studio>
This commit is contained in:
parent
6301df660a
commit
fa720d5016
@ -1,6 +0,0 @@
|
||||
---
|
||||
"tauri.js": patch
|
||||
---
|
||||
|
||||
Transpile the TS API to ES5.
|
||||
Expose CJS as .js and ESM as .mjs.
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"tauri.js": patch
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Fixes the assets embedding into the binary.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Improves the logging of child processes like `bundle_appimage.sh` and `bundle_dmg.sh`.
|
@ -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.
|
||||
|
@ -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>",
|
||||
|
@ -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.
|
||||
|
@ -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"
|
||||
|
@ -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.
|
||||
|
@ -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>",
|
||||
|
Loading…
Reference in New Issue
Block a user