From 27bfabcc7fcc1a42b828c8b7579b2a184bc3bf35 Mon Sep 17 00:00:00 2001 From: Andrii Zymohliad Date: Wed, 13 Mar 2024 22:42:39 +0200 Subject: [PATCH] Release v0.5.2 --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- assets/io.gitlab.azymohliad.WatchMate.metainfo.xml | 7 +++++++ watchmate/Cargo.toml | 2 +- watchmate/src/ui.rs | 2 +- 5 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a7cd39..70071ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.5.2 - 2024-03-13 + +- Fix occasional high CPU usage when trying to reconnect. + ## v0.5.1 - 2023-11-09 - Fix the background mode on systems without the Background portal. diff --git a/Cargo.lock b/Cargo.lock index a38a568..69eabc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3148,7 +3148,7 @@ checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" [[package]] name = "watchmate" -version = "0.5.1" +version = "0.5.2" dependencies = [ "anyhow", "ashpd", diff --git a/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml b/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml index 5992ad7..731cc61 100644 --- a/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml +++ b/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml @@ -55,6 +55,13 @@ + + +
    +
  • Fix occasional high CPU usage when trying to reconnect.
  • +
+
+
    diff --git a/watchmate/Cargo.toml b/watchmate/Cargo.toml index 1cd8056..9886f3b 100644 --- a/watchmate/Cargo.toml +++ b/watchmate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "watchmate" -version = "0.5.1" +version = "0.5.2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/watchmate/src/ui.rs b/watchmate/src/ui.rs index dc2f3ab..2542faa 100644 --- a/watchmate/src/ui.rs +++ b/watchmate/src/ui.rs @@ -317,7 +317,7 @@ impl Component for Model { .transient_for(root) .application_icon(APP_ID) .application_name("Watchmate") - .version("v0.5.1") + .version("v0.5.2") .website("https://github.com/azymohliad/watchmate") .issue_url("https://github.com/azymohliad/watchmate/issues") .license_type(gtk::License::Gpl30)