From f513aa5f8b355e335b2acaa7ffffac66c5301e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Thu, 27 Mar 2025 09:05:25 +0100 Subject: [PATCH] Release Fractal 11.beta --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- data/org.gnome.Fractal.metainfo.xml.in.in | 27 +++++++++++++++++++++++ meson.build | 6 ++--- 5 files changed, 34 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1af71818..6c48834d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "fractal" -version = "10.1.0" +version = "11.0.0-beta" dependencies = [ "aperture", "ashpd", diff --git a/Cargo.toml b/Cargo.toml index 2b59508c..8bfd043e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "10.1.0" +version = "11.0.0-beta" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.82" diff --git a/README.md b/README.md index 86f45111..4d43f8c0 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.1 (released February 10th 2024). +The current stable version is 10.1 (released February 10th 2025). 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.1 (same as stable). +The current beta version is 11.beta (released March 27th 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 e3b9819c..bf15f066 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -71,6 +71,33 @@ @development-release@ + + +

+ It’s the beginning of bee season! 🌸🌺🌼 🐝 B like beta! +

+
    +
  • + New shortcuts Ctrl + Page Up and Ctrl + Page Down go to the previous/next room in the + list. +
  • +
  • + The media cache will now be periodically cleaned up. +
  • +
  • + The page that lists user sessions has been overhauled, with details moved to subpages, + for a less cluttered feel, and paving the way to a new feature! +
  • +
  • + A couple of small cosmetic changes have landed as well. +
  • +
+

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

+
+

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