diff --git a/.changes/http-request-headers.md b/.changes/http-request-headers.md deleted file mode 100644 index 8f87598d1..000000000 --- a/.changes/http-request-headers.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-api": patch ---- - -Fixes the httpRequest headers usage. It now accepts Strings instead of serde_json::Value. diff --git a/.changes/windows-fix.md b/.changes/windows-fix.md deleted file mode 100644 index 7c82ce9e4..000000000 --- a/.changes/windows-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": patch ---- - -Fixes the Windows build with the latest Windows SDK. diff --git a/cli/tauri.js/package.json b/cli/tauri.js/package.json index 40cbdaad3..9fdca8cd0 100644 --- a/cli/tauri.js/package.json +++ b/cli/tauri.js/package.json @@ -1,6 +1,6 @@ { "name": "tauri", - "version": "0.7.0", + "version": "0.7.1", "description": "Multi-binding collection of libraries and templates for building Tauri apps", "bin": { "tauri": "./bin/tauri.js" diff --git a/tauri-api/CHANGELOG.md b/tauri-api/CHANGELOG.md index 4fe12325f..165a3a0a2 100644 --- a/tauri-api/CHANGELOG.md +++ b/tauri-api/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.6.1] + +- Fixes the httpRequest headers usage. It now accepts Strings instead of serde_json::Value. + ## [0.6.0] - This adds HttpRequestBuilder, described at "alternatives you've considered" section in undefined. diff --git a/tauri-api/Cargo.toml b/tauri-api/Cargo.toml index acec506ab..d702cb92b 100644 --- a/tauri-api/Cargo.toml +++ b/tauri-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-api" -version = "0.6.0" +version = "0.6.1" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ", diff --git a/tauri/CHANGELOG.md b/tauri/CHANGELOG.md index 0e5f88808..d2784c8ce 100644 --- a/tauri/CHANGELOG.md +++ b/tauri/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.7.1] + +- Fixes the Windows build with the latest Windows SDK. + ## [0.7.0] - Adds a command line interface option to tauri apps, configurable under tauri.conf.json > tauri > cli. diff --git a/tauri/Cargo.toml b/tauri/Cargo.toml index 9c2e05966..0f43e75ef 100644 --- a/tauri/Cargo.toml +++ b/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "0.6.1" +version = "0.6.2" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ",