From b67d763dea71e89480146a5acaad5ac8193c19c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Mon, 10 Feb 2025 15:45:02 +0100 Subject: [PATCH] Release Fractal 10.1 This version backports the fixes to the regressions introduced in Fractal 10. --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- data/org.gnome.Fractal.metainfo.xml.in.in | 18 ++++++++++++++++++ meson.build | 4 ++-- 5 files changed, 24 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f9aa7840..4072a56e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1302,7 +1302,7 @@ dependencies = [ [[package]] name = "fractal" -version = "10.0.0" +version = "10.1.0" dependencies = [ "aperture", "ashpd", diff --git a/Cargo.toml b/Cargo.toml index d5e3e892..d614a94d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "10.0.0" +version = "10.1.0" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.82" diff --git a/README.md b/README.md index af307f9f..86f45111 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ development version while keeping the stable release around for daily use. ### Stable version -The current stable version is 10 (released January 30th 2024). +The current stable version is 10.1 (released February 10th 2024). You can get the official Fractal Flatpak from Flathub. @@ -53,7 +53,7 @@ You can get the official Fractal Flatpak from Flathub. ### Beta version -The current beta version is 10 (same as stable). +The current beta version is 10.1 (same as stable). It is available as a Flatpak on Flathub Beta. diff --git a/data/org.gnome.Fractal.metainfo.xml.in.in b/data/org.gnome.Fractal.metainfo.xml.in.in index 4b0adfdf..e3b9819c 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -71,6 +71,24 @@ @development-release@ + + +

+ Due to a couple of unfortunate but important regressions in Fractal 10, we are releasing + Fractal 10.1 so our users don’t have to wait too long for them to be addressed. This minor + version fixes the following issues: +

+
    +
  • + Some rooms were stuck in an unread state, even after reading them or marking them as + read. +
  • +
  • + Joining or creating a room would crash the app. +
  • +
+
+

diff --git a/meson.build b/meson.build index 6ae20df4..877c1d49 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fractal', 'rust', - version: '10', + version: '10.1', license: 'GPL-3.0-or-later', meson_version: '>= 1.1') @@ -10,7 +10,7 @@ gnome = import('gnome') base_id = 'org.gnome.Fractal' application_id = base_id -major_version = '10' +major_version = '10.1' pre_release_version = '' version = major_version