feat: prepare v2 alpha release (#371)

This commit is contained in:
Lucas Fernandes Nogueira
2023-05-18 10:08:37 -03:00
committed by GitHub
parent b08a45352d
commit 717ae67097
61 changed files with 1259 additions and 383 deletions
+11 -11
View File
@@ -1,20 +1,20 @@
[package]
name = "tauri-plugin-dialog"
version = "0.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
version = "1.0.0"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
links = "tauri-plugin-dialog"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde.workspace = true
serde_json.workspace = true
tauri.workspace = true
log.workspace = true
thiserror.workspace = true
tauri-plugin-fs = { path = "../fs", version = "0.0.0" }
serde = { workspace = true }
serde_json = { workspace = true }
tauri = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
tauri-plugin-fs = { path = "../fs", version = "1.0.0" }
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
glib = "0.16"
@@ -24,4 +24,4 @@ rfd = { version = "0.11", features = [ "gtk3", "common-controls-v6" ] }
raw-window-handle = "0.5"
[build-dependencies]
tauri-build.workspace = true
tauri-build = { workspace = true }
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-dialog",
"version": "0.0.0",
"version": "1.0.0",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"