Skip to content

Commit

Permalink
Bump version to 0.17.3
Browse files Browse the repository at this point in the history
Signed-off-by: tsukinaha <sakuovds@gmail.com>
  • Loading branch information
tsukinaha committed Nov 21, 2024
1 parent 8e6cb34 commit 35d8ff4
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.17.2"
version = "0.17.3"
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.17.2.0
0.17.3.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.17.2',
version: '0.17.3',
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 = '17'
micro_version = '1'
micro_version = '3'

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.17.2" date="2024-10-18" />
<release version="0.17.3" 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.17.2";
pub static VERSION: &str = "0.17.3";
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 v0.17.2 \n2024.11.13 21:50",
"A simple third-party Emby client.\nVersion: tsukimi v0.17.3 \n2024.11.13 21:50",
)
// TRANSLATORS: 'Name <email@domain.com>' or 'Name https://website.example'
.translator_credits(gettext("translator-credits"))
Expand Down

0 comments on commit 35d8ff4

Please sign in to comment.