publish new versions

This commit is contained in:
lucasfernog
2024-02-21 17:39:43 +00:00
committed by Lucas Nogueira
parent 5ca9a80f45
commit e0d415e405
89 changed files with 394 additions and 153 deletions
+5
View File
@@ -1,5 +1,9 @@
# Changelog
## \[2.0.0-beta.1]
- [`569defb`](https://github.com/tauri-apps/plugins-workspace/commit/569defbe9492e38938554bb7bdc1be9151456d21) Update to tauri beta.4.
## \[2.0.0-beta.0]
- [`d198c01`](https://github.com/tauri-apps/plugins-workspace/commit/d198c014863ee260cb0de88a14b7fc4356ef7474)([#862](https://github.com/tauri-apps/plugins-workspace/pull/862)) Update to tauri beta.
@@ -49,3 +53,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!
ithub.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!
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-notification"
version = "2.0.0-beta.0"
version = "2.0.0-beta.1"
description = "Send desktop and mobile notifications on your Tauri application."
edition = { workspace = true }
authors = { workspace = true }
@@ -31,18 +31,18 @@ serde_repr = "0.1"
win7-notifications = { version = "0.3.1", optional = true }
windows-version = { version = "0.1", optional = true }
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies]
lazy_static = { version = "1", optional = true }
image = { version = "0.24", optional = true }
zbus = { version = "4", optional = true }
log = "0.4"
env_logger ={ version ="0.10", optional = true }
env_logger = { version = "0.10", optional = true }
[target.'cfg(target_os="macos")'.dependencies]
[target."cfg(target_os=\"macos\")".dependencies]
mac-notification-sys = "0.6"
chrono = { version = "0.4", optional = true}
chrono = { version = "0.4", optional = true }
[target.'cfg(target_os="windows")'.dependencies]
[target."cfg(target_os=\"windows\")".dependencies]
winrt-notification = { package = "tauri-winrt-notification", version = "0.1" }
[dev-dependencies]
@@ -52,5 +52,5 @@ maplit = "1.0"
[features]
default = [ "zbus", "async" ]
async = []
async = [ ]
windows7-compat = [ "win7-notifications", "windows-version" ]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-notification",
"version": "2.0.0-beta.0",
"version": "2.0.0-beta.1",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"