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
+6
View File
@@ -0,0 +1,6 @@
# Changelog
## \[2.0.0-rc.0]
- [`9606089b`](https://github.com/tauri-apps/plugins-workspace/commit/9606089b2add4a17f80ed5a09d59ce94824bd672) ([#1599](https://github.com/tauri-apps/plugins-workspace/pull/1599)) Initial release.
- [`9887d1`](https://github.com/tauri-apps/plugins-workspace/commit/9887d14bd0e971c4c0f5c1188fc4005d3fc2e29e) Update to tauri RC.
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-haptics"
version = "2.0.0-beta.0"
version = "2.0.0-rc.0"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
@@ -8,11 +8,11 @@ repository = { workspace = true }
links = "tauri-plugin-haptics"
[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
rustc-args = [ "--cfg", "docsrs" ]
rustdoc-args = [ "--cfg", "docsrs" ]
[build-dependencies]
tauri-plugin = { workspace = true, features = ["build"] }
tauri-plugin = { workspace = true, features = [ "build" ] }
[dependencies]
serde = { workspace = true }
+1 -1
View File
@@ -20,7 +20,7 @@ Install the Core plugin by adding the following to your `Cargo.toml` file:
```toml
[dependencies]
tauri-plugin-haptics = "2.0.0-beta"
tauri-plugin-haptics = "2.0.0-rc"
# alternatively with Git:
tauri-plugin-haptics = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
```
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-haptics",
"version": "2.0.0-beta.0",
"version": "2.0.0-rc.0",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
@@ -23,6 +23,6 @@
"LICENSE"
],
"dependencies": {
"@tauri-apps/api": "^2.0.0-beta.16"
"@tauri-apps/api": "^2.0.0-rc.0"
}
}