From e0d2ab3abbe1fd0abc38dd67bfbef90c67d98722 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Tue, 28 Oct 2025 19:22:04 +1000 Subject: [PATCH] chore: bump version to 0.9.0 Signed-off-by: Zephyron --- src/citron/about_dialog.cpp | 3 ++- src/citron/main.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/citron/about_dialog.cpp b/src/citron/about_dialog.cpp index e1002fe19..61a2ab24f 100644 --- a/src/citron/about_dialog.cpp +++ b/src/citron/about_dialog.cpp @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 citron Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include @@ -9,7 +10,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui{std::make_unique()} { - const auto citron_build_version = "citron | 0.8.0"; + const auto citron_build_version = "citron | 0.9.0"; ui->setupUi(this); // Try and request the icon from Qt theme (Linux?) diff --git a/src/citron/main.cpp b/src/citron/main.cpp index c6d089288..1153a4f39 100644 --- a/src/citron/main.cpp +++ b/src/citron/main.cpp @@ -5257,7 +5257,7 @@ void GMainWindow::MigrateConfigFiles() { void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_view title_version, std::string_view gpu_vendor) { - const auto window_title = "citron | 0.8.0"; + const auto window_title = "citron | 0.9.0"; if (title_name.empty()) { setWindowTitle(QString::fromStdString(window_title));