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

Apply Version Updates From Current Changes (#748)

Co-authored-by: lucasfernog <lucas@tauri.studio>
github-actions[bot] 5 жил өмнө
parent
commit
fa720d5016

+ 0 - 6
.changes/api-transpile.md

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

+ 0 - 6
.changes/assets-fix.md

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

+ 0 - 5
.changes/bundler-log-improvement.md

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

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

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

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

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

+ 7 - 1
cli/tauri.js/CHANGELOG.md

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

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

+ 4 - 0
tauri/CHANGELOG.md

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

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