From a849341e3a49a35f954de3ec2fe101d79c447895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 14 Jan 2025 10:24:17 +0100 Subject: [PATCH] Release Fractal 10.rc --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- data/org.gnome.Fractal.metainfo.xml.in.in | 43 +++++++++++++++++++++++ meson.build | 4 +-- 5 files changed, 48 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa02d05e..9894dac9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1358,7 +1358,7 @@ dependencies = [ [[package]] name = "fractal" -version = "10.0.0-beta" +version = "10.0.0-rc" dependencies = [ "ashpd", "assert_matches2", diff --git a/Cargo.toml b/Cargo.toml index 57c627de..24016df0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "10.0.0-beta" +version = "10.0.0-rc" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.82" diff --git a/README.md b/README.md index 8e68ecaf..16a4eab3 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ You can get the official Fractal Flatpak from Flathub. ### Beta version -The current beta version is 10.beta (released December 26th 2024). +The current beta version is 10.rc (released January 14th 2025). 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 4ff2ab46..732c40c0 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -71,6 +71,49 @@ @development-release@ + + +

+ In this cold weather, we hope this new release candidate will warm your hearts. Let’s + celebrate this with our own awards ceremony: +

+
    +
  • + The most next-gen addition goes to… making Fractal OIDC aware. This ensures + compatibility with the upcoming authentication changes for matrix.org. +
  • +
  • + The most valuable fix goes to… showing consistently pills for users and rooms mentions + in the right place instead of seemingly random places, getting rid of one of our oldest + and most annoying bug. +
  • +
  • + The most sensible improvement goes to… using the send queue for attachments, ensuring + correct order of all messages and improving the visual feedback. +
  • +
  • + The most underrated feature goes to… allowing to react to stickers, fixing a crash in + the process. +
  • +
  • + The most obvious tweak goes to… removing the “Open Direct Chat” menu entry from avatar + menu and member profile in direct chats. +
  • +
  • + The clearest enhancement goes to… labelling experimental versions in the room upgrade + menu as such. +
  • +
+

+ As usual, this release includes other improvements, fixes and new translations thanks to + all our contributors, and our upstream projects. +

+

+ As the version implies, it should be mostly stable and we expect to only include minor + improvements until the release of Fractal 10. +

+
+

diff --git a/meson.build b/meson.build index 4f750062..15963804 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fractal', 'rust', - version: '10.beta', + version: '10.rc', license: 'GPL-3.0-or-later', meson_version: '>= 1.1') @@ -11,7 +11,7 @@ base_id = 'org.gnome.Fractal' application_id = base_id major_version = '10' -pre_release_version = 'beta' +pre_release_version = 'rc' version = major_version if pre_release_version != ''