Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pwltr committed Aug 6, 2023
1 parent ca6285c commit 128611e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 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.5",
"version": "0.2.6",
"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.5"
version = "0.2.6"
description = "A cross-platform TOTP authentication client built with tauri"
authors = ["[email protected]"]
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.5"))
.version(String::from("0.2.6"))
.authors(vec![String::from("Philipp Walter")])
.comments(String::from("2FA authentication client"))
.copyright(String::from("GPL-3.0 License"))
Expand Down
6 changes: 3 additions & 3 deletions 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.5"
"version": "0.2.6"
},
"build": {
"beforeDevCommand": "yarn dev",
Expand All @@ -25,8 +25,8 @@
"resources": [],
"externalBin": [],
"copyright": "GPL-3.0",
"category": "Security",
"shortDescription": "Cross-platform TOTP authentication client",
"category": "Utility",
"shortDescription": "Tauthy",
"longDescription": "A cross-platform TOTP authentication client built with tauri",
"deb": {
"depends": []
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.5" />
<ListItemText primary={t('about.version')} secondary="0.2.6" />
</ListItemButton>
</ListItem>

Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default defineConfig({
envPrefix: ['VITE_', 'TAURI_'],
build: {
// Tauri uses Chromium on Windows and WebKit on macOS and Linux
target: process.env.TAURI_PLATFORM == 'windows' ? 'chrome105' : 'safari13',
target: process.env.TAURI_PLATFORM == 'windows' ? 'chrome105' : 'safari15',
// don't minify for debug builds
minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
// produce sourcemaps for debug builds
Expand Down

0 comments on commit 128611e

Please sign in to comment.