Browse Source

Release Fractal 10.1

This version backports the fixes to the regressions introduced in
Fractal 10.
pipelines/797018
Kévin Commaille 1 year ago
parent
commit
b67d763dea
No known key found for this signature in database
GPG Key ID: C971D9DBC9D678D
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 4
      README.md
  4. 18
      data/org.gnome.Fractal.metainfo.xml.in.in
  5. 4
      meson.build

2
Cargo.lock generated

@ -1302,7 +1302,7 @@ dependencies = [
[[package]]
name = "fractal"
version = "10.0.0"
version = "10.1.0"
dependencies = [
"aperture",
"ashpd",

2
Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "fractal"
version = "10.0.0"
version = "10.1.0"
authors = ["Julian Sparber <julian@sparber.net>"]
edition = "2021"
rust-version = "1.82"

4
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 (released January 30th 2024).
The current stable version is 10.1 (released February 10th 2024).
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 (same as stable).
The current beta version is 10.1 (same as stable).
It is available as a Flatpak on Flathub Beta.

18
data/org.gnome.Fractal.metainfo.xml.in.in

@ -71,6 +71,24 @@
</content_rating>
<releases>@development-release@
<release version="10.1" type="stable" date="2025-02-10">
<description>
<p>
Due to a couple of unfortunate but important regressions in Fractal 10, we are releasing
Fractal 10.1 so our users don’t have to wait too long for them to be addressed. This minor
version fixes the following issues:
</p>
<ul>
<li>
Some rooms were stuck in an unread state, even after reading them or marking them as
read.
</li>
<li>
Joining or creating a room would crash the app.
</li>
</ul>
</description>
</release>
<release version="10" type="stable" date="2025-01-30">
<description>
<p>

4
meson.build

@ -1,6 +1,6 @@
project('fractal',
'rust',
version: '10',
version: '10.1',
license: 'GPL-3.0-or-later',
meson_version: '>= 1.1')
@ -10,7 +10,7 @@ gnome = import('gnome')
base_id = 'org.gnome.Fractal'
application_id = base_id
major_version = '10'
major_version = '10.1'
pre_release_version = ''
version = major_version

Loading…
Cancel
Save