diff --git a/Cargo.lock b/Cargo.lock index 2d6a83aa..09ff8a78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1208,7 +1208,7 @@ dependencies = [ [[package]] name = "fractal" -version = "11.0.0-beta" +version = "11.0.0-rc" dependencies = [ "aperture", "ashpd", diff --git a/Cargo.toml b/Cargo.toml index 84b2fb53..368e8d93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "11.0.0-beta" +version = "11.0.0-rc" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.85" diff --git a/README.md b/README.md index 4d43f8c0..6f1130fa 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 11.beta (released March 27th 2025). +The current beta version is 11.rc (released April 17th 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 bf15f066..f849682d 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -71,10 +71,47 @@ @development-release@ + + +

+ Here comes the RC. New since 11.beta: +

+
    +
  • + Rearranged account settings, with a new Safety tab +
  • +
  • + New setting to toggle media preview visibility +
  • +
  • + Sessions can be renamed +
  • +
  • + Support for login using the OAuth 2.0 API (as used by matrix.org, which recently made + the switch to Matrix Authentication Service) +
  • +
  • + Contiguous state events are grouped behind a single item +
  • +
+

+ But what does RC stand for? Really Cool? Reasonably Complete? Rose Colored¹? Release + Candidate, of course! That means it should be mostly stable and we expect to only include + minor improvements until the release of Fractal 11. +

+

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

+

+ 1. That was actually once true, with Fractal 9.rc. +

+
+

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

  • diff --git a/meson.build b/meson.build index 1c49de86..f95ea5c1 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fractal', 'rust', - version: '11.beta', + version: '11.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 = '11' -pre_release_version = 'beta' +pre_release_version = 'rc' version = major_version if pre_release_version != ''