mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-30 18:46:27 +03:00
apply version updates (#721)
Co-authored-by: jbolda <me@jacobbolda.com>
This commit is contained in:
parent
d109c066c2
commit
d8af70fa95
@ -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.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": minor
|
||||
---
|
||||
|
||||
Check if mksquashfs is installed before bundling AppImage
|
@ -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`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-api": minor
|
||||
---
|
||||
|
||||
readDir API refactor. Now returns `path`, `name` and `children`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri.js": minor
|
||||
---
|
||||
|
||||
Create UMD, ESM and CJS artifacts for the JavaScript API entry point from TS source using rollup.
|
@ -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`).
|
@ -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).
|
||||
|
@ -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>",
|
||||
|
7
cli/tauri.js/CHANGELOG.md
Normal file
7
cli/tauri.js/CHANGELOG.md
Normal 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).
|
@ -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"
|
||||
|
@ -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.
|
||||
|
@ -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>",
|
||||
|
@ -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.
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user