From 8fd746033f21a440d794fbae8fc7bb7e4bf1a87c Mon Sep 17 00:00:00 2001 From: Alexandre Franke Date: Thu, 21 Dec 2023 15:50:00 +0000 Subject: [PATCH] Release Fractal 6.beta --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- data/org.gnome.Fractal.metainfo.xml.in.in | 26 +++++++++++++++++++++++ meson.build | 6 +++--- 5 files changed, 32 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cec9033b..40e8a6ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1495,7 +1495,7 @@ dependencies = [ [[package]] name = "fractal" -version = "5.0.0" +version = "6.0.0-beta" dependencies = [ "ashpd", "djb_hash", diff --git a/Cargo.toml b/Cargo.toml index df77f318..765ed962 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "5.0.0" +version = "6.0.0-beta" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.70" diff --git a/README.md b/README.md index f0917078..0670b2c1 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ You can get the official Fractal Flatpak from Flathub. ### Beta version -The current beta version is 5 (same as stable, released November 24th 2023). +The current beta version is 6.beta (released December 21st 2023). 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 07d2a593..3ef1787a 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -65,6 +65,32 @@ @development-release@ + + +

+ Even though Fractal 5 was released only 1 month ago, development has been going at a + steady pace with a few new contributors, so we want our users to benefit from our + progress. +

+

+ The staff’s picks: +

+
    +
  • Restoring sessions from Secret Services other than GNOME Keyring has been fixed
  • +
  • Times follow the format (12h or 24h) from the system settings
  • +
  • Media history works in encrypted rooms
  • +
  • The accessibility of the sidebar was improved
  • +
  • More notifications settings were added, you can now set global and per-room behavior and even manage your keywords
  • +
  • A bunch of refactoring, notably the port to the glib::Properties macro from gtk-rs that helped us removed almost 3000 lines of code!
  • +
+

+ As usual, this release includes other improvements, fixes and new translations thanks to + all our contributors, and our upstream projects. As the version implies, there might be a + slight risk of regressions, but it should be mostly stable. If all goes well the next + step is the release candidate! +

+
+

diff --git a/meson.build b/meson.build index c87bcf8c..83487d8c 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fractal', 'rust', - version: '5', + version: '6.beta', license: 'GPL-3.0-or-later', meson_version: '>= 0.59') @@ -10,8 +10,8 @@ gnome = import('gnome') base_id = 'org.gnome.Fractal' application_id = base_id -major_version = '5' -pre_release_version = '' +major_version = '6' +pre_release_version = 'beta' version = major_version if pre_release_version != ''