From a16fb2860f788f87ae03564e15c0456b5c8bc0a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Fri, 17 Oct 2025 12:05:18 +0200 Subject: [PATCH] Release Fractal 13.rc --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- data/org.gnome.Fractal.metainfo.xml.in.in | 20 ++++++++++++++++++++ meson.build | 4 ++-- 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7fdf55d2..f966222e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "fractal" -version = "13.0.0-beta" +version = "13.0.0-rc" dependencies = [ "aperture", "ashpd", diff --git a/Cargo.toml b/Cargo.toml index 834a3fc8..c0bfea04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "13.0.0-beta" +version = "13.0.0-rc" authors = ["Julian Sparber "] license = "GPL-3.0-or-later" edition = "2024" diff --git a/README.md b/README.md index 1be00336..05dc90b3 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 13.beta (released September 25th 2025). +The current beta version is 13.rc (released October 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 7e898a51..5a031dab 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -71,6 +71,26 @@ @development-release@ + + +

+ Ah, Autumn… The trees are wearing their warmest colors, the wine harvest is ending, + developers are preparing to hibernate… and Fractal 13.rc is here! +

+

+ Our repository has been relatively quiet since the beta release, with mostly work on bug + fixes for our new audio player, and a bit of code refactoring. +

+

+ 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 13. +

+
+

diff --git a/meson.build b/meson.build index 307c0c34..76ca9cbd 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'fractal', 'rust', - version: '13.beta', + version: '13.rc', license: 'GPL-3.0-or-later', meson_version: '>= 1.2', ) @@ -14,7 +14,7 @@ base_id = 'org.gnome.Fractal' application_id = base_id major_version = '13' -pre_release_version = 'beta' +pre_release_version = 'rc' version = major_version if pre_release_version != ''