Skip to content

Commit f975b50

Browse files
committed
chore: bump version
1 parent 5503a23 commit f975b50

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tauthy",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"private": true,
55
"scripts": {
66
"start": "tauri dev",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauthy"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
description = "A cross-platform TOTP authentication client built with tauri"
55
authors = ["philippwalter@pm.me"]
66
license = "GPL-3.0 License"

src-tauri/src/menu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use tauri::{AboutMetadata, Menu, MenuItem, Submenu};
44

55
pub(crate) fn menu() -> Menu {
66
let about_menu = AboutMetadata::new()
7-
.version(String::from("0.2.6"))
7+
.version(String::from("0.2.7"))
88
.authors(vec![String::from("Philipp Walter")])
99
.comments(String::from("2FA authentication client"))
1010
.copyright(String::from("GPL-3.0 License"))

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"package": {
33
"productName": "Tauthy",
4-
"version": "0.2.6"
4+
"version": "0.2.7"
55
},
66
"build": {
77
"beforeDevCommand": "yarn dev",

src/components/About.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const About = () => {
7070
<ListItemIcon>
7171
<CodeIcon color="primary" />
7272
</ListItemIcon>
73-
<ListItemText primary={t('about.version')} secondary="0.2.6" />
73+
<ListItemText primary={t('about.version')} secondary="0.2.7" />
7474
</ListItemButton>
7575
</ListItem>
7676

0 commit comments

Comments
 (0)