Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#197)
Browse files Browse the repository at this point in the history
Co-authored-by: amrbashir <[email protected]>
  • Loading branch information
github-actions[bot] and amrbashir authored Sep 25, 2024
1 parent bf5cec4 commit daa3f7f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 30 deletions.
28 changes: 0 additions & 28 deletions .changes/serde-tagged.md

This file was deleted.

27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Changelog

## \[0.19.0]

- [`bf5cec4`](https://www.github.com/tauri-apps/tray-icon/commit/bf5cec4c3242534cb068978bb27e37551bcb63f9) ([#196](https://www.github.com/tauri-apps/tray-icon/pull/196) by [@amrbashir](https://www.github.com/tauri-apps/tray-icon/../../amrbashir)) **Breaking change** Changed `serde` derive implementation for `TrayIconEvent` to use `serde(tag = "type")` and `rename_all = "camelCase"` on variants so the expected JSON serialization would look like this

```json
{
"type": "Click",
"button": "Left",
"buttonState": "Down",
"id": "some id",
"position": {
"x": 0,
"y": 0
},
"rect": {
"size": {
"width": 0,
"height": 0
},
"position": {
"x": 0,
"y": 0
}
}
}
```

## \[0.18.0]

- [`c63733c`](https://www.github.com/tauri-apps/tray-icon/commit/c63733c45f5fd34bc16c9310cb4f1a063e5e21c7) ([#193](https://www.github.com/tauri-apps/tray-icon/pull/193) by [@amrbashir](https://www.github.com/tauri-apps/tray-icon/../../amrbashir)) Update `muda` crate to `0.15`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tray-icon"
version = "0.18.0"
version = "0.19.0"
edition = "2021"
description = "Create tray icons for desktop applications"
homepage = "https://github.com/tauri-apps/tray-icon"
Expand Down Expand Up @@ -77,4 +77,4 @@ winit = "0.29"
tao = "0.30"
image = "0.25"
eframe = "0.27"
serde_json = "1"
serde_json = "1"

0 comments on commit daa3f7f

Please sign in to comment.