feat: bump to RC

This commit is contained in:
Lucas Nogueira
2024-08-02 10:52:21 -03:00
parent 9606089b2a
commit 4db635f19b
249 changed files with 4584 additions and 5624 deletions
+4
View File
@@ -1,5 +1,9 @@
# Changelog
## \[2.0.0-rc.0]
- [`9887d1`](https://github.com/tauri-apps/plugins-workspace/commit/9887d14bd0e971c4c0f5c1188fc4005d3fc2e29e) Update to tauri RC.
## \[2.0.0-beta.12]
- [`e847cedc`](https://github.com/tauri-apps/plugins-workspace/commit/e847cedc1f46f3e7a2ad81ea579b620bc5b992d7) ([#1402](https://github.com/tauri-apps/plugins-workspace/pull/1402) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Use no default features on tauri for all plugins so that consumers can use `default-features = false` on tauri, note that this will still enable wry feature on iOS
+4 -4
View File
@@ -1,13 +1,13 @@
[package]
name = "tauri-plugin-single-instance"
version = "2.0.0-beta.12"
version = "2.0.0-rc.0"
description = "Ensure a single instance of your tauri app is running."
authors = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }
exclude = [ "/examples" ]
exclude = ["/examples"]
[package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ]
@@ -30,11 +30,11 @@ features = [
"Win32_UI_WindowsAndMessaging",
"Win32_Security",
"Win32_System_LibraryLoader",
"Win32_Graphics_Gdi"
"Win32_Graphics_Gdi",
]
[target."cfg(target_os = \"linux\")".dependencies]
zbus = "4"
[features]
semver = [ "dep:semver" ]
semver = ["dep:semver"]
+1 -1
View File
@@ -18,7 +18,7 @@ Install the Core plugin by adding the following to your `Cargo.toml` file:
```toml
[dependencies]
tauri-plugin-single-instance = "2.0.0-beta"
tauri-plugin-single-instance = "2.0.0-rc"
# alternatively with Git:
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
```
@@ -9,6 +9,6 @@
"author": "",
"license": "MIT",
"devDependencies": {
"@tauri-apps/cli": "2.0.0-beta.23"
"@tauri-apps/cli": "2.0.0-rc.0"
}
}