Skip to content

Commit efc7bb1

Browse files
Publish New Versions (v2) (tauri-apps#2317)
Co-authored-by: FabianLars <[email protected]>
1 parent c9c13a0 commit efc7bb1

File tree

23 files changed

+76
-61
lines changed

23 files changed

+76
-61
lines changed

.changes/specta-feature.md

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

.changes/specta.md

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

.changes/zbus5.md

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

Cargo.lock

Lines changed: 6 additions & 6 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.10]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.9]
411

512
### Dependencies

examples/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.9",
4+
"version": "2.0.10",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -19,11 +19,11 @@
1919
"@tauri-apps/plugin-fs": "^2.2.0",
2020
"@tauri-apps/plugin-geolocation": "^2.2.0",
2121
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
22-
"@tauri-apps/plugin-opener": "^2.2.0",
22+
"@tauri-apps/plugin-opener": "^2.2.4",
2323
"@tauri-apps/plugin-haptics": "^2.2.0",
2424
"@tauri-apps/plugin-http": "^2.2.0",
2525
"@tauri-apps/plugin-nfc": "^2.2.0",
26-
"@tauri-apps/plugin-notification": "^2.2.0",
26+
"@tauri-apps/plugin-notification": "^2.2.1",
2727
"@tauri-apps/plugin-os": "^2.2.0",
2828
"@tauri-apps/plugin-process": "^2.2.0",
2929
"@tauri-apps/plugin-shell": "^2.2.0",

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.14]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
312
## \[2.0.13]
413

514
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 5 additions & 5 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.13"
4+
version = "2.0.14"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -28,12 +28,12 @@ tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.0" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
3030
], version = "2.2.0" }
31-
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.0", features = [
31+
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.1", features = [
3232
"windows7-compat",
3333
] }
3434
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.0" }
3535
tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.0" }
36-
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.3" }
36+
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.4" }
3737
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.0" }
3838
tauri-plugin-store = { path = "../../../plugins/store", version = "2.2.0" }
3939

@@ -60,8 +60,8 @@ tauri-plugin-window-state = { path = "../../../plugins/window-state", version =
6060
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.2.0" }
6161
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.2.0" }
6262
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.2.0" }
63-
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.2.1" }
64-
tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.2.1" }
63+
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.2.2" }
64+
tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.2.2" }
6565

6666
[features]
6767
prod = ["tauri/custom-protocol"]

plugins/geolocation/CHANGELOG.md

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

3+
## \[2.2.2]
4+
5+
- [`c9c13a0f`](https://github.com/tauri-apps/plugins-workspace/commit/c9c13a0fe7cdaac223843f5ba33176252f8e22f5) ([#2316](https://github.com/tauri-apps/plugins-workspace/pull/2316) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) **Breaking change:** `specta` integration is now behind a `specta` feature flag like in Tauri.
6+
- [`c9c13a0f`](https://github.com/tauri-apps/plugins-workspace/commit/c9c13a0fe7cdaac223843f5ba33176252f8e22f5) ([#2316](https://github.com/tauri-apps/plugins-workspace/pull/2316) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Unlock and widen `specta` version range to match Tauri. No API changes.
7+
38
## \[2.2.1]
49

510
- [`fb67ab2b`](https://github.com/tauri-apps/plugins-workspace/commit/fb67ab2b926502bfc20d6b43fbdd156691ea8526) ([#2281](https://github.com/tauri-apps/plugins-workspace/pull/2281) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Added `specta-util` to fix a "dependency not found" compilation error.

plugins/geolocation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tauri-plugin-geolocation"
33
description = "Get and track the device's current position"
4-
version = "2.2.1"
4+
version = "2.2.2"
55
edition = { workspace = true }
66
authors = { workspace = true }
77
license = { workspace = true }

0 commit comments

Comments
 (0)