Эх сурвалжийг харах

apply version updates (#721)

Co-authored-by: jbolda <me@jacobbolda.com>
github-actions[bot] 5 жил өмнө
parent
commit
d8af70fa95

+ 0 - 6
.changes/bundler-binaries.md

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

+ 0 - 5
.changes/bundler-check-mksquashfs.md

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

+ 0 - 8
.changes/execute-promise-refactor.md

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

+ 0 - 5
.changes/fs-read-dir-api.md

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

+ 0 - 5
.changes/ts-api.md

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

+ 0 - 6
.changes/window-tauri.md

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

+ 6 - 0
cli/tauri-bundler/CHANGELOG.md

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

+ 1 - 1
cli/tauri-bundler/Cargo.toml

@@ -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 - 0
cli/tauri.js/CHANGELOG.md

@@ -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 - 1
cli/tauri.js/package.json

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

+ 7 - 0
tauri-api/CHANGELOG.md

@@ -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 - 1
tauri-api/Cargo.toml

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

+ 6 - 0
tauri/CHANGELOG.md

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

+ 2 - 2
tauri/Cargo.toml

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