diff --git a/CHANGELOG.md b/CHANGELOG.md index 70071ca..20f9243 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,17 @@ # Changelog +## v0.5.3 - 2024-11-10 + +- Fixed compilation issue with Rust >= 1.80. +- Updated dependencies. Migrated to the latest Relm4. + ## v0.5.2 - 2024-03-13 -- Fix occasional high CPU usage when trying to reconnect. +- Fixed occasional high CPU usage when trying to reconnect. ## v0.5.1 - 2023-11-09 -- Fix the background mode on systems without the Background portal. +- Fixed the background mode on systems without the Background portal. ## v0.5.0 - 2023-11-04 diff --git a/Cargo.lock b/Cargo.lock index 4864bc4..96e5f85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3257,7 +3257,7 @@ checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" [[package]] name = "watchmate" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "ashpd", diff --git a/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml b/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml index 731cc61..a25cbf0 100644 --- a/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml +++ b/assets/io.gitlab.azymohliad.WatchMate.metainfo.xml @@ -55,6 +55,14 @@ + + +
    +
  • Fix compilation with Rust >= 1.80.
  • +
  • Update dependencies, migrate to the latest Relm4.
  • +
+
+
    diff --git a/flatpak/io.gitlab.azymohliad.WatchMate.yml b/flatpak/io.gitlab.azymohliad.WatchMate.yml index 12a184c..68064a1 100644 --- a/flatpak/io.gitlab.azymohliad.WatchMate.yml +++ b/flatpak/io.gitlab.azymohliad.WatchMate.yml @@ -1,6 +1,6 @@ id: io.gitlab.azymohliad.WatchMate runtime: org.gnome.Platform -runtime-version: '45' +runtime-version: '47' sdk: org.gnome.Sdk sdk-extensions: - org.freedesktop.Sdk.Extension.rust-stable diff --git a/watchmate/Cargo.toml b/watchmate/Cargo.toml index 402334b..47095a8 100644 --- a/watchmate/Cargo.toml +++ b/watchmate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "watchmate" -version = "0.5.2" +version = "0.5.3" 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 70dad35..e552c08 100644 --- a/watchmate/src/ui.rs +++ b/watchmate/src/ui.rs @@ -319,7 +319,7 @@ impl Component for Model { .transient_for(root) .application_icon(APP_ID) .application_name("Watchmate") - .version("v0.5.2") + .version("v0.5.3") .website("https://github.com/azymohliad/watchmate") .issue_url("https://github.com/azymohliad/watchmate/issues") .license_type(gtk::License::Gpl30)