diff --git a/Cargo.lock b/Cargo.lock
index 06a973d1..1eb4515f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3179,7 +3179,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "tsukimi"
-version = "0.16.5"
+version = "0.16.6"
dependencies = [
"anyhow",
"async-channel",
diff --git a/Cargo.toml b/Cargo.toml
index 00da0d5b..cda8fb85 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tsukimi"
-version = "0.16.5"
+version = "0.16.6"
edition = "2021"
rust-version = "1.81"
description = "A simple Emby Client written by GTK4-RS"
diff --git a/installer/version.txt b/installer/version.txt
index 972ccf77..c89ce9bf 100644
--- a/installer/version.txt
+++ b/installer/version.txt
@@ -1 +1 @@
-0.16.5.0
\ No newline at end of file
+0.16.6.0
\ No newline at end of file
diff --git a/meson.build b/meson.build
index 60840ad8..e17e4bd2 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('tsukimi', 'rust',
- version: '0.16.5',
+ version: '0.16.6',
meson_version: '>= 1.1',
default_options: [ 'warning_level=2',
'werror=false',
@@ -9,7 +9,7 @@ project('tsukimi', 'rust',
major_version = '0'
minor_version = '16'
-micro_version = '5'
+micro_version = '6'
version = major_version
version += '.' + minor_version + '.' + micro_version
diff --git a/resources/moe.tsuna.tsukimi.metainfo.xml.in b/resources/moe.tsuna.tsukimi.metainfo.xml.in
index b1104d94..b024016d 100644
--- a/resources/moe.tsuna.tsukimi.metainfo.xml.in
+++ b/resources/moe.tsuna.tsukimi.metainfo.xml.in
@@ -5,7 +5,7 @@
CC0-1.0
GPL-3.0-or-later
-
+
Tsukimi
A simple third-party Emby client
diff --git a/src/config.rs b/src/config.rs
index fa8fce23..1ed65fce 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -1,2 +1,2 @@
-pub static VERSION: &str = "0.16.5";
+pub static VERSION: &str = "0.16.6";
pub static GETTEXT_PACKAGE: &str = "tsukimi";
diff --git a/src/ui/mod.rs b/src/ui/mod.rs
index 63b9b204..3474c2fb 100644
--- a/src/ui/mod.rs
+++ b/src/ui/mod.rs
@@ -20,7 +20,7 @@ pub fn build_ui(app: &adw::Application) {
.application_name("Tsukimi")
.version(crate::config::VERSION)
.comments(
- "A simple third-party Emby client.\nVersion: tsukimi 0.16.5 \n2024.10.18 20:05",
+ "A simple third-party Emby client.\nVersion: tsukimi 0.16.6 \n2024.10.18 20:05",
)
// TRANSLATORS: 'Name ' or 'Name https://website.example'
.translator_credits(gettext("translator-credits"))