apply version updates (#721)

Co-authored-by: jbolda <me@jacobbolda.com>
This commit is contained in:
github-actions[bot] 2020-07-03 21:25:48 +02:00 committed by GitHub
parent d109c066c2
commit d8af70fa95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 31 additions and 40 deletions

View File

@ -1,6 +0,0 @@
---
"tauri-bundler": minor
---
The bundler now bundles all binaries from your project ([[[bin]] target tables](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#binaries)) and [src/bin folder](https://doc.rust-lang.org/cargo/guide/project-layout.html).
When multiple binaries are used, make sure to use the [default-run](https://doc.rust-lang.org/cargo/reference/manifest.html#the-default-run-field) config field.

View File

@ -1,5 +0,0 @@
---
"tauri-bundler": minor
---
Check if mksquashfs is installed before bundling AppImage

View File

@ -1,8 +0,0 @@
---
"tauri-api": minor
"tauri": minor
---
The `execute_promise` and `execute_promise_sync` helpers now accepts any `tauri::Result<T>` where `T: impl Serialize`.
This means that you do not need to serialize your response manually or deal with String quotes anymore.
As part of this refactor, the `event::emit` function also supports `impl Serialize` instead of `String`.

View File

@ -1,5 +0,0 @@
---
"tauri-api": minor
---
readDir API refactor. Now returns `path`, `name` and `children`.

View File

@ -1,5 +0,0 @@
---
"tauri.js": minor
---
Create UMD, ESM and CJS artifacts for the JavaScript API entry point from TS source using rollup.

View File

@ -1,6 +0,0 @@
---
"tauri.js": minor
---
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`).

View File

@ -1,5 +1,11 @@
# Changelog
## [0.8.0]
- The bundler now bundles all binaries from your project (undefined) and undefined.
When multiple binaries are used, make sure to use the undefined config field.
- Check if mksquashfs is installed before bundling AppImage
## [0.7.0]
- Fixes AppImage bundler (appimagetool usage, build script running properly, proper AppRun and .desktop files).

View File

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

View File

@ -0,0 +1,7 @@
# Changelog
## [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).

View File

@ -1,6 +1,6 @@
{
"name": "tauri",
"version": "0.7.1",
"version": "0.8.0",
"description": "Multi-binding collection of libraries and templates for building Tauri apps",
"bin": {
"tauri": "./bin/tauri.js"

View File

@ -1,5 +1,12 @@
# Changelog
## [0.7.0]
- The execute_promise and execute_promise_sync helpers now accepts any tauri::Result<T> where T: impl Serialize.
This means that you do not need to serialize your response manually or deal with String quotes anymore.
As part of this refactor, the event::emit function also supports impl Serialize instead of String.
- readDir API refactor. Now returns path, name and children.
## [0.6.1]
- Fixes the httpRequest headers usage. It now accepts Strings instead of serde_json::Value.

View File

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

View File

@ -1,5 +1,11 @@
# Changelog
## [0.7.0]
- The execute_promise and execute_promise_sync helpers now accepts any tauri::Result<T> where T: impl Serialize.
This means that you do not need to serialize your response manually or deal with String quotes anymore.
As part of this refactor, the event::emit function also supports impl Serialize instead of String.
## [0.7.1]
- Fixes the Windows build with the latest Windows SDK.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "0.6.2"
version = "0.7.0"
authors = [
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
@ -33,7 +33,7 @@ anyhow = "1.0.31"
thiserror = "1.0.20"
envmnt = "0.8.3"
once_cell = "1.4.0"
tauri-api = { version = "0.6", path = "../tauri-api" }
tauri-api = { version = "0.7", path = "../tauri-api" }
[build-dependencies]
tauri_includedir_codegen = "0.6.1"