Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pwltr committed Mar 20, 2023
1 parent c6245de commit 18fed6b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tauthy",
"version": "0.2.4",
"version": "0.2.5",
"private": true,
"scripts": {
"start": "tauri dev",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/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 src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauthy"
version = "0.2.4"
version = "0.2.5"
description = "A cross-platform TOTP authentication client built with tauri"
authors = ["philippwalter@pm.me"]
license = "GPL-3.0 License"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use tauri::{AboutMetadata, Menu, MenuItem, Submenu};

pub(crate) fn menu() -> Menu {
let about_menu = AboutMetadata::new()
.version(String::from("0.2.4"))
.version(String::from("0.2.5"))
.authors(vec![String::from("Philipp Walter")])
.comments(String::from("2FA authentication client"))
.copyright(String::from("GPL-3.0 License"))
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "Tauthy",
"version": "0.2.4"
"version": "0.2.5"
},
"build": {
"distDir": "../dist",
Expand Down
2 changes: 1 addition & 1 deletion src/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const About = () => {
<ListItemIcon>
<CodeIcon color="primary" />
</ListItemIcon>
<ListItemText primary={t('about.version')} secondary="0.2.4" />
<ListItemText primary={t('about.version')} secondary="0.2.5" />
</ListItemButton>
</ListItem>

Expand Down

0 comments on commit 18fed6b

Please sign in to comment.