Skip to content

Commit fc4d895

Browse files
publish new versions
1 parent 2a625ad commit fc4d895

File tree

14 files changed

+48
-36
lines changed

14 files changed

+48
-36
lines changed

.changes/allow-log-formatter-per-target.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/updater-new-bundle-support.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/api/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.35]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.34]
411

512
### Dependencies

examples/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.34",
4+
"version": "2.0.35",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -28,7 +28,7 @@
2828
"@tauri-apps/plugin-process": "^2.3.1",
2929
"@tauri-apps/plugin-shell": "^2.3.3",
3030
"@tauri-apps/plugin-store": "^2.4.1",
31-
"@tauri-apps/plugin-updater": "^2.9.0",
31+
"@tauri-apps/plugin-updater": "^2.10.0",
3232
"@tauri-apps/plugin-upload": "^2.3.0",
3333
"@zerodevx/svelte-json-view": "1.0.11"
3434
},

examples/api/src-tauri/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.39]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.38]
411

512
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "api"
33
publish = false
4-
version = "2.0.38"
4+
version = "2.0.39"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -20,7 +20,7 @@ serde = { workspace = true }
2020
tiny_http = "0.12"
2121
time = "0.3"
2222
log = { workspace = true }
23-
tauri-plugin-log = { path = "../../../plugins/log", version = "2.7.1" }
23+
tauri-plugin-log = { path = "../../../plugins/log", version = "2.8.0" }
2424
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.4.4", features = [
2525
"watch",
2626
] }
@@ -57,7 +57,7 @@ features = [
5757
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5858
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.4.1" }
5959
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.3.1" }
60-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.9.0" }
60+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.10.0" }
6161
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
6262

6363
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]

plugins/log/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[2.8.0]
4+
5+
- [`2a625adf`](https://github.com/tauri-apps/plugins-workspace/commit/2a625adff30238904035b86b6e2db7595597e857) ([#3065](https://github.com/tauri-apps/plugins-workspace/pull/3065)) Allow specifying a log formatter per target using the `format` method on `Target`.
6+
37
## \[2.7.1]
48

59
- [`93426f85`](https://github.com/tauri-apps/plugins-workspace/commit/93426f85120f49beb9f40222bff45185a32d54a9) Fixed an issue that caused docs.rs builds to fail. No user facing changes.

plugins/log/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-log"
3-
version = "2.7.1"
3+
version = "2.8.0"
44
description = "Configurable logging for your Tauri app."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/log/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-log",
3-
"version": "2.7.1",
3+
"version": "2.8.0",
44
"description": "Configurable logging for your Tauri app.",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

0 commit comments

Comments
 (0)