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
+5 -1
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.8]
- [`99d6ac0f`](https://github.com/tauri-apps/plugins-workspace/commit/99d6ac0f9506a6a4a1aa59c728157190a7441af6) ([#1606](https://github.com/tauri-apps/plugins-workspace/pull/1606) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) The JS packages now specify the *minimum* `@tauri-apps/api` version instead of a single exact version.
@@ -85,4 +89,4 @@
- [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
ae67\`]\(https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-websocket"
version = "2.0.0-beta.10"
version = "2.0.0-rc.0"
description = "Expose a WebSocket server to your Tauri frontend."
authors = { workspace = true }
license = { workspace = true }
@@ -8,7 +8,7 @@ edition = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }
links = "tauri-plugin-websocket"
exclude = [ "/examples" ]
exclude = ["/examples"]
[package.metadata.docs.rs]
rustc-args = [ "--cfg", "docsrs" ]
@@ -26,12 +26,12 @@ thiserror = { workspace = true }
http = "1"
rand = "0.8"
futures-util = "0.3"
tokio = { version = "1", features = [ "net", "sync" ] }
tokio = { version = "1", features = ["net", "sync"] }
tokio-tungstenite = { version = "0.23" }
[features]
default = [ "rustls-tls" ]
native-tls = [ "tokio-tungstenite/native-tls" ]
native-tls-vendored = [ "native-tls", "tokio-tungstenite/native-tls-vendored" ]
rustls-tls = [ "tokio-tungstenite/rustls-tls-webpki-roots" ]
rustls-tls-native-roots = [ "tokio-tungstenite/rustls-tls-native-roots" ]
default = ["rustls-tls"]
native-tls = ["tokio-tungstenite/native-tls"]
native-tls-vendored = ["native-tls", "tokio-tungstenite/native-tls-vendored"]
rustls-tls = ["tokio-tungstenite/rustls-tls-webpki-roots"]
rustls-tls-native-roots = ["tokio-tungstenite/rustls-tls-native-roots"]
+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-websocket = "2.0.0-beta"
tauri-plugin-websocket = "2.0.0-rc"
# alternatively with Git:
tauri-plugin-websocket = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
```
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"devDependencies": {
"@tauri-apps/cli": "2.0.0-beta.23",
"@tauri-apps/cli": "2.0.0-rc.0",
"typescript": "^5.3.3",
"vite": "^5.0.13"
},
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-websocket",
"version": "2.0.0-beta.8",
"version": "2.0.0-rc.0",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
@@ -24,6 +24,6 @@
"LICENSE"
],
"dependencies": {
"@tauri-apps/api": "^2.0.0-beta.16"
"@tauri-apps/api": "^2.0.0-rc.0"
}
}