From c0ffcbd40774365395ee258fd7ca012e14b8e301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Wed, 3 Jul 2024 15:16:10 +0200 Subject: [PATCH] chore: Release Fractal 8.beta --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- data/org.gnome.Fractal.metainfo.xml.in.in | 42 +++++++++++++++++++++++ meson.build | 6 ++-- 5 files changed, 48 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c91049a9..8e563096 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1401,7 +1401,7 @@ dependencies = [ [[package]] name = "fractal" -version = "7.0.0" +version = "8.0.0-beta" dependencies = [ "ashpd", "djb_hash", diff --git a/Cargo.toml b/Cargo.toml index 2df54764..dc143728 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "7.0.0" +version = "8.0.0-beta" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.76" diff --git a/README.md b/README.md index fd389184..37a1b627 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ You can get the official Fractal Flatpak from Flathub. ### Beta version -The current beta version is 7 (same as stable). +The current beta version is 8.beta (released July 3rd 2024). 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 4d99eaef..c118fc74 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -71,6 +71,48 @@ @development-release@ + + +

+ It’s been all over the news, so you probably already have heard about what’s happening in + France, but in case you haven’t yet: a new Fractal beta just dropped! +

+

+ What have we been up to? +

+
    +
  • + Mentions are sent intentionally +
  • +
  • + Authenticated media are supported +
  • +
  • + Draft messages are kept per-room +
  • +
  • + The verification and account recovery processes have been polished +
  • +
  • + HTML rendering should be more robust, as we switched to the same library already used by + the Rust SDK to cleanup tags in messages +
  • +
  • + Speaking of HTML rendering, code blocks gained syntax highlighting, lists can be nested, + numbered lists can start from an arbitrary number, the details tag is supported, and + @room mentions are detected and rendered with a pill +
  • +
+

+ 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 d900b22c..1d9df7c0 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fractal', 'rust', - version: '7', + version: '8.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 = '7' -pre_release_version = '' +major_version = '8' +pre_release_version = 'beta' version = major_version if pre_release_version != ''