Skip to content

Commit

Permalink
bump to 0.17.1
Browse files Browse the repository at this point in the history
Signed-off-by: tsukinaha <[email protected]>
  • Loading branch information
tsukinaha committed Nov 13, 2024
1 parent 321f9a1 commit 41f90fe
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 64 deletions.
113 changes: 56 additions & 57 deletions 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.0"
version = "0.17.1"
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.0.0
0.17.1.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.0',
version: '0.17.1',
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 = '0'
micro_version = '1'

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.0" date="2024-10-18" />
<release version="0.17.1" 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.0";
pub static VERSION: &str = "0.17.1";
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.17.0 \n2024.10.18 20:05",
"A simple third-party Emby client.\nVersion: tsukimi 0.17.1 \n2024.10.18 20:05",
)
// TRANSLATORS: 'Name <[email protected]>' or 'Name https://website.example'
.translator_credits(gettext("translator-credits"))
Expand Down

0 comments on commit 41f90fe

Please sign in to comment.