Skip to content

Commit

Permalink
chore: bump to 0.16.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukinaha committed Oct 23, 2024
1 parent a9dd2ec commit 7b958bf
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion installer/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.5.0
0.16.6.0
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -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',
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion resources/moe.tsuna.tsukimi.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<releases>
<release version="0.16.5" date="2024-10-18" />
<release version="0.16.6" date="2024-10-18" />
</releases>
<name>Tsukimi</name>
<summary>A simple third-party Emby client</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub static VERSION: &str = "0.16.5";
pub static VERSION: &str = "0.16.6";
pub static GETTEXT_PACKAGE: &str = "tsukimi";
2 changes: 1 addition & 1 deletion src/ui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <email@domain.com>' or 'Name https://website.example'
.translator_credits(gettext("translator-credits"))
Expand Down

0 comments on commit 7b958bf

Please sign in to comment.